-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
72 lines (72 loc) · 1.76 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
{
"name": "@reactend/express",
"version": "1.0.17",
"description": "React-like http-server on Nodejs",
"main": "dist/index.js",
"repository": {
"url": "[email protected]:reactend/reactend-express.git"
},
"scripts": {
"dev": "nodemon ./app/index.js",
"build": "NODE_ENV=production rollup -c rollup.config.js",
"prepublishOnly": "npm run build",
"validate": "eslint '*.js' && prettier '*.js' --write"
},
"keywords": [
"reactend",
"express",
"react",
"http-server"
],
"author": "Orkhan Jafarov",
"license": "ISC",
"husky": {
"hooks": {
"pre-commit": [
"lint-staged"
]
}
},
"lint-staged": {
"*.js": [
"eslint",
"prettier --write"
]
},
"dependencies": {
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"express": "^4.17.1",
"faker": "^5.4.0",
"morgan": "^1.10.0",
"prop-types": "^15.7.2",
"react-reconciler": "^0.26.1"
},
"peerDependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"styled-components": "^5.2.1"
},
"devDependencies": {
"@babel/core": "^7.12.13",
"@babel/plugin-transform-react-jsx": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"@rollup/plugin-babel": "^5.2.3",
"@rollup/plugin-commonjs": "^17.1.0",
"eslint": "^7.19.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"rollup": "^2.38.5"
}
}