-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 925 Bytes
/
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
{
"name": "pariswebapp",
"version": "0.1.0",
"repository": "https://github.com/ziir/pariswebapp",
"homepage": "https://www.paris-web.fr/2018/ateliers/petits-trucs-pour-rendre-vos-applications-react-plus-performantes.php",
"scripts": {
"start": "NODE_ENV=production node index.js",
"dev": "nodemon index.js",
"precommit": "lint-staged",
"postinstall": "[ -z \"$VHOST\" ] && exit 0; ./build-all.sh && ./clean-all.sh",
"deploy": "ssh [email protected] deploy default.git"
},
"dependencies": {
"morgan": "^1.9.1",
"serve-handler": "^5.0.5",
"yarn": "^1.10.1"
},
"devDependencies": {
"husky": "^1.0.0-rc.15",
"lint-staged": "^7.3.0",
"nodemon": "^1.18.4",
"prettier": "^1.14.3"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
],
"*/src/**/*.{js,jsx,json,css}": [
"prettier --write",
"git add"
]
}
}