-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.01 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
{
"name": "helsinki-districts",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"express": "^4.16.1",
"nodemon": "^1.12.1"
},
"scripts": {
"start": "nodemon index.js",
"precommit": "lint-staged",
"deploy": "now -e NODE_ENV=production --public"
},
"lint-staged": {
"*.js": [
"prettier --single-quote --trailing-comma all --write",
"git add"
]
},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-config-motley": "^7.3.0",
"eslint-config-prettier": "2.1.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"husky": "^0.13.3",
"lint-staged": "^3.4.2",
"prettier": "^1.5.0"
},
"description": "Helsinki districts on a map, based on Helsinki open data",
"repository": "https://github.com/bostrom/helsinki-districts",
"author": "Fredrik Boström <[email protected]>"
}