forked from natterstefan/nextjs-rtk-query-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.04 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
{
"name": "nextjs-template",
"author": "Stefan Natter <https://natterstefan.me>",
"version": "0.1.0",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "git+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": "is-ci || husky install",
"postinstall": "node scripts/setup",
"start": "next start",
"storybook": "start-storybook -p 6006",
"test": "jest --passWithNoTests",
"test:cypress": "start-server-and-test dev 3000 cypress:open",
"test:cypress:ci": "start-server-and-test dev 3000 cypress:run"
},
"dependencies": {
"@reduxjs/toolkit": "^1.5.1",
"@rtk-incubator/rtk-query": "^0.3.0",
"date-fns": "^2.21.0",
"next": "^10.1.3",
"next-compose-plugins": "^2.2.1",
"next-i18next": "^8.1.3",
"react": "^16.14.0",
"react-cookie": "^4.0.3",
"react-dom": "^16.14.0",
"react-redux": "^7.2.3"
},
"devDependencies": {
"@babel/core": "^7.13.15",
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@storybook/addon-actions": "^6.2.8",
"@storybook/addon-essentials": "^6.2.8",
"@storybook/addon-links": "^6.2.8",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/addons": "^6.2.8",
"@storybook/builder-webpack5": "^6.2.8",
"@storybook/react": "^6.2.8",
"@types/enzyme": "^3.10.8",
"@types/node": "^14.14.37",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"all-contributors-cli": "^6.20.0",
"autoprefixer": "^10.2.5",
"babel-loader": "^8.2.2",
"css-loader": "^5.2.1",
"cypress": "^6.9.1",
"enzyme": "^3.11.0",
"eslint": "^7.24.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-ns-ts": "^1.6.1",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.5",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^6.0.0",
"is-ci": "^3.0.0",
"jest": "^26.6.3",
"jest-preset-ns": "^0.2.0",
"postcss": "^8.2.10",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-import": "^14.0.1",
"postcss-loader": "^5.2.0",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.2.1",
"sass": "^1.32.8",
"sass-loader": "^11.0.1",
"start-server-and-test": "^1.12.1",
"storybook-addon-next-router": "^2.0.4",
"style-loader": "^2.0.0",
"stylelint": "^13.12.0",
"stylelint-config-recommended": "^4.0.0",
"tailwindcss": "^2.1.1",
"typescript": "^4.2.4",
"webpack": "^5.33.2"
}
}