-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.64 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
{
"name": "nextjs-preact-starter",
"version": "1.0.0",
"private": true,
"description": "",
"main": "server.js",
"scripts": {
"dev": "node dev-server.js",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext .js --ext .jsx --ignore-path .eslintignore --fix",
"deploy": "now --target production",
"now-build": "next build"
},
"author": "Edwin cloud <[email protected]>",
"license": "MIT",
"dependencies": {
"axios": "^0.19.0",
"module-alias": "^2.2.0",
"next": "^9.0.0",
"next-compose-plugins": "^2.2.0",
"next-offline": "^4.0.2",
"preact": "^10.0.0-rc.0",
"preact-render-to-string": "^5.0.6",
"preact-ssr-prepass": "^1.0.0",
"styled-components": "^4.3.2"
},
"_moduleAliases": {
"react": "node_modules/preact/compat",
"react-dom": "node_modules/preact/compat",
"react-ssr-prepass": "node_modules/preact-ssr-prepass"
},
"resolutions": {
"lodash": "4.17.14"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.2",
"http": "0.0.0",
"husky": "^3.0.1",
"lint-staged": "^9.2.0",
"prettier": "^1.18.2",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"engines": {
"node": ">= 10.16.0"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint . --ext .js --ext .jsx --ignore-path .eslintignore --fix",
"git add"
]
}
}