-
Notifications
You must be signed in to change notification settings - Fork 101
/
package.json
82 lines (82 loc) · 2.2 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
{
"dependencies": {
"@reduxjs/toolkit": "^1.6.2",
"axios": "^0.19.0",
"compression": "^1.7.1",
"express": "^4.16.2",
"helmet": "^3.20.0",
"humps": "^2.0.1",
"next": "^11.1.2",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-redux": "^7.2.5",
"redux-logger": "^3.0.6",
"styled-components": "^5.3.1",
"styled-normalize": "^8.0.6"
},
"name": "nextjs-redux-starter",
"version": "1.0.0",
"main": "server/index.js",
"devDependencies": {
"@babel/core": "^7.1.0",
"@testing-library/jest-dom": "^5.1.1",
"@testing-library/react": "^9.4.1",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^25.1.0",
"babel-plugin-inline-dotenv": "^1.1.2",
"babel-plugin-module-resolver": "^4.0.0",
"jest": "^25.1.0",
"lint-staged": "^10.0.8",
"nodemon": "^2.0.1",
"pre-commit": "^1.2.2",
"react-test-renderer": "^16.2.0",
"rimraf": "^3.0.0",
"snazzy": "^8.0.0",
"standard": "^13.0.1"
},
"scripts": {
"lint-staged": "lint-staged",
"build": "NODE_ENV=production next build",
"test:ci": "jest --maxWorkers=2 --ci",
"test": "jest --watch",
"start": "nodemon -w server server/index.js",
"serve": "NODE_ENV=production node server/index.js",
"clean": "rimraf node_modules/.cache .next",
"lint": "standard --verbose | snazzy",
"now-start": "yarn serve",
"lint:fix": "standard --fix --verbose | snazzy"
},
"pre-commit": "lint-staged",
"lint-staged": {
"*.js": [
"yarn lint:fix",
"git add"
]
},
"standard": {
"parser": "babel-eslint",
"env": [
"jest"
]
},
"engines": {
"node": ">= 10"
},
"jest": {
"modulePaths": [
"./src",
"./src/test"
],
"setupFilesAfterEnv": [
"@testing-library/jest-dom/extend-expect"
]
},
"repository": "CodementorIO/nextjs-redux-starter",
"bugs": "https://github.com/CodementorIO/nextjs-redux-starter/issues",
"author": "Ian Wang <[email protected]> (https://github.com/IanWang)",
"license": "ISC",
"description": "Opinionated Next.js starter with Express, Redux, styled-components, and Jest."
}