-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.5 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
{
"dependencies": {
"axios": "^0.18.0",
"babel-plugin-module-resolver": "^3.0.0",
"compression": "^1.7.1",
"cors": "^2.8.5",
"express": "^4.16.2",
"helmet": "^3.12.1",
"humps": "^2.0.1",
"immutable": "^3.8.2",
"next": "^8.0.1",
"next-redux-wrapper": "^2.1.0",
"next-routes": "^1.4.2",
"node-sass": "^4.9.3",
"normalize-scss": "^7.0.1",
"prop-types": "^15.6.1",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"react-helmet": "^5.2.0",
"react-redux": "^6.0.0",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"sass-loader": "^7.1.0",
"styled-jsx-css-loader": "^0.3.0"
},
"name": "nextjs-redux-starter",
"version": "1.0.0",
"main": "server/index.js",
"devDependencies": {
"@babel/core": "^7.1.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.0.0",
"babel-plugin-inline-dotenv": "^1.1.2",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.8.0",
"jest": "^24.0.0",
"lint-staged": "^8.1.0",
"next-workbox-webpack-plugin": "^1.1.0",
"nodemon": "^1.12.1",
"pre-commit": "^1.2.2",
"raf": "^3.4.0",
"react-test-renderer": "^16.2.0",
"rimraf": "^2.6.2",
"snazzy": "^8.0.0",
"standard": "^12.0.1",
"webpack-bundle-analyzer": "^3.0.2",
"webpack-pwa-manifest": "^4.0.0"
},
"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": ">= 8"
},
"jest": {
"modulePaths": [
"./src"
],
"moduleNameMapper": {
"\\.(css|scss)$": "<rootDir>/src/test/__mocks__/styleMock.js"
},
"setupFilesAfterEnv": [
"<rootDir>/src/test/jest.setup.js"
]
},
"repository": "talentedandrew/PayNotes",
"bugs": "https://github.com/talentedandrew/PayNotes/issues",
"author": "Anurag V(https://github.com/talentedandrew)",
"license": "ISC",
"description": "A react, redux web application"
}