forked from pankod/next-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.45 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
{
"name": "next-boilerplate",
"version": "1.0.0",
"description": "",
"main": "app/server.js",
"scripts": {
"start:dev": "nodemon --watch app --watch app/server.js",
"build": "cross-env NODE_ENV=production next build",
"start": "cross-env NODE_ENV=production node ./app/server.js",
"heroku-prebuild": "npm i --dev && cross-env NODE_ENV=production next build",
"export": "cross-env NODE_ENV=production next export",
"analyze": "cross-env BUNDLE_ANALYZE=both npm run build",
"cli": "node ./project-cli/dist/index.js a",
"postinstall": "cd project-cli && npm i && npm run build",
"test": "jest --coverage",
"lint": "eslint -c .eslintrc.js --ext .ts,.tsx {app,pages,src}/**",
"format": "eslint -c .eslintrc.js --ext .ts,.tsx --fix {app,pages,src}/**"
},
"dependencies": {
"@zeit/next-bundle-analyzer": "^0.1.2",
"@zeit/next-css": "^1.0.1",
"@zeit/next-sass": "^1.0.1",
"@zeit/next-typescript": "^1.1.1",
"awesome-typescript-loader": "^5.2.1",
"cross-env": "^5.2.0",
"http-proxy-middleware": "^0.19.1",
"isomorphic-unfetch": "^3.0.0",
"next": "^7.0.2",
"next-compose-plugins": "^2.1.1",
"next-redux-wrapper": "^2.1.0",
"next-routes": "^1.4.2",
"next-runtime-dotenv": "^1.0.1",
"nock": "^10.0.6",
"node-sass": "^4.11.0",
"query-string": "^6.5.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^6.0.0",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@types/enzyme": "^3.9.1",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.0.12",
"@types/next": "^7.0.6",
"@types/next-redux-wrapper": "^2.0.2",
"@types/node": "^11.13.8",
"@types/react": "^16.8.14",
"@types/react-dom": "^16.8.4",
"@types/react-redux": "^6.0.11",
"@types/redux-mock-store": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"autoprefixer": "^9.4.3",
"babel-jest": "^24.8.0",
"babel-plugin-module-resolver": "^3.1.1",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.13.0",
"jest": "^24.7.1",
"nodemon": "^1.18.11",
"nyc": "^14.1.0",
"prettier": "^1.17.1",
"react-test-renderer": "^16.8.6",
"redux-devtools-extension": "^2.13.7",
"redux-mock-store": "^1.5.3",
"rimraf": "^2.6.3",
"ts-jest": "^24.0.2",
"ts-node": "^8.1.0",
"typescript": "^3.4.5"
},
"author": "",
"license": "ISC"
}