-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
109 lines (109 loc) · 3.61 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "nextjs-template",
"author": "Stefan Natter <https://natterstefan.me>",
"version": "0.1.0",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/natterstefan/nextjs-template.git"
},
"bugs": {
"url": "https://github.com/natterstefan/nextjs-template/issues"
},
"scripts": {
"build-storybook": "build-storybook",
"build": "next build",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"dev": "next",
"lint": "yarn lint:ts && yarn lint:css",
"lint:ts": "tsc && eslint --cache \"./**/*.{ts,tsx}\"",
"lint:css": "stylelint --cache './**/*.{ts,tsx,scss}'",
"prepare": "node scripts/setup && is-ci || husky install",
"start": "next start",
"storybook": "start-storybook -p 6006 -s ./public",
"test": "jest",
"test:cypress": "start-server-and-test dev 3000 cypress:open",
"test:cypress:ci": "yarn build && start-server-and-test start 3000 cypress:run"
},
"dependencies": {
"date-fns": "^2.23.0",
"i18next": "^20.3.5",
"i18next-browser-languagedetector": "^6.1.2",
"i18next-xhr-backend": "^3.2.2",
"next": "^11.0.1",
"next-compose-plugins": "^2.2.1",
"next-i18next": "^8.5.5",
"react": "^17.0.2",
"react-cookie": "^4.0.3",
"react-dom": "^17.0.2",
"react-i18next": "^11.11.4"
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@natterstefan/scripts": "^1.2.0",
"@next/eslint-plugin-next": "^11.0.1",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.3",
"@semantic-release/release-notes-generator": "^9.0.3",
"@storybook/addon-actions": "^6.3.6",
"@storybook/addon-essentials": "^6.3.6",
"@storybook/addon-links": "^6.3.6",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/addons": "^6.3.6",
"@storybook/builder-webpack5": "^6.3.6",
"@storybook/manager-webpack5": "^6.3.6",
"@storybook/react": "^6.3.6",
"@types/enzyme": "^3.10.9",
"@types/jest": "^26.0.24",
"@types/node": "^14.14.41",
"@types/react": "^17.0.15",
"@types/react-dom": "^17.0.9",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.3",
"all-contributors-cli": "^6.20.0",
"autoprefixer": "^10.3.1",
"babel-loader": "^8.2.2",
"css-loader": "^6.2.0",
"cypress": "^8.1.0",
"enzyme": "^3.11.0",
"eslint": "^7.25.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-ns-ts": "^1.6.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.1",
"is-ci": "^3.0.0",
"jest": "^27.0.6",
"jest-date-mock": "^1.0.8",
"jest-preset-ns": "^1.0.0",
"postcss": "^8.3.6",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-import": "^14.0.2",
"postcss-loader": "^6.1.1",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.2.1",
"sass": "^1.37.2",
"sass-loader": "^12.1.0",
"semantic-release": "^17.4.4",
"start-server-and-test": "^1.13.1",
"storybook-addon-i18next": "^1.3.0",
"storybook-addon-next-router": "^3.0.5",
"style-loader": "^3.2.1",
"stylelint": "^13.13.1",
"stylelint-config-recommended": "^5.0.0",
"tailwindcss": "^2.2.7",
"typescript": "^4.3.5",
"webpack": "^5.48.0"
}
}