-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.48 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
{
"name": "frontend",
"version": "0.1.0",
"repository": "[email protected]:full-stack/nextjs.git",
"author": {
"name": "PixelPlex Inc.",
"email": "[email protected]"
},
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"export": "next build && next export",
"audit": "audit-ci --config audit-ci.json",
"lint": "eslint \"src/**/*.js\"",
"lint:fix": "eslint \"src/**/*.js\" --fix"
},
"license": "MIT",
"dependencies": {
"@zeit/next-sass": "^1.0.1",
"classnames": "^2.2.6",
"config": "^3.3.1",
"echojs-ping": "^0.1.7",
"immutable": "^4.0.0-rc.12",
"json-immutable": "^0.4.0",
"lodash.clonedeep": "^4.5.0",
"next": "^9.3.4",
"next-images": "^1.4.0",
"next-redux-wrapper": "^5.0.0",
"node-sass": "^4.13.1",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"redux": "^4.0.5",
"redux-batched-actions": "^0.5.0",
"redux-devtools-extension": "^2.13.8",
"redux-modules": "^1.1.1",
"redux-modules-middleware": "^1.2.0",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"audit-ci": "^2.5.1",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"husky": "^4.2.3"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint:fix"
}
}
}