-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.15 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
{
"name": "parkandsleep",
"version": "1.0.0",
"description": "Park and Sleep",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node ./src/start_server.js",
"dev": "nodemon --ext js,hbs ./src/start_server.js",
"precommit-msg": "echo 'Pre-commit checks..' && exit 0",
"lint": "eslint ./ --ignore-pattern .gitignore"
},
"pre-commit": [
"precommit-msg",
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/FACN1/PAS.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/FACN1/PAS/issues"
},
"homepage": "https://github.com/FACN1/PAS#readme",
"dependencies": {
"handlebars": "^4.0.8",
"hapi": "^16.1.1",
"inert": "^4.2.0",
"leaflet": "^1.0.3",
"mapbox": "^1.0.0-beta7",
"vision": "^4.1.1"
},
"devDependencies": {
"nodemon": "^1.11.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"pre-commit": "^1.2.2"
},
"engines": {
"node": "7.9.0"
}
}