-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.82 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
{
"name": "next-init",
"version": "0.1.0",
"private": false,
"scripts": {
"lint": "lint-staged",
"test": "jest",
"dev": "next dev",
"build": "next build",
"start": "next start",
"docker-build": "docker build -t next-app .",
"docker-build-ms": "docker build -t next-app -f ./Dockerfile.multistage .",
"docker-run": "docker run --rm -it -p 3000:3000 next-app",
"deploy": "now --prod",
"release": "standard-version",
"patch": "npm run release -- --release-as patch",
"minor": "npm run release -- --release-as minor",
"major": "npm run release -- --release-as major"
},
"dependencies": {
"@zeit/next-css": "^1.0.1",
"dotenv": "8.2.0",
"immutability-helper": "3.0.2",
"next": "9.3.5",
"next-redux-wrapper": "5.0.0",
"prop-types": "15.7.2",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-icons": "3.9.0",
"react-redux": "7.2.0",
"redux": "4.0.5",
"redux-actions": "2.6.5",
"redux-logger": "3.0.6",
"redux-observable": "1.2.0",
"rxjs": "6.5.5",
"styled-components": "5.1.0",
"universal-rxjs-ajax": "2.0.4"
},
"devDependencies": {
"@commitlint/cli": "8.3.5",
"@commitlint/config-angular": "8.3.4",
"babel-eslint": "10.1.0",
"babel-plugin-styled-components": "1.10.7",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.2",
"eslint-plugin-json": "2.1.1",
"husky": "4.2.5",
"jest": "25.3.0",
"lint-staged": "10.1.3",
"prettier": "2.0.4",
"standard": "14.3.3",
"standard-version": "7.1.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -c .commitlintrc.json -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,css,json}": [
"eslint --fix",
"git add"
]
},
"engines": {
"node": ">=12.13.1"
}
}