-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.27 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
{
"name": "tip-off-mvp",
"version": "1.0.0",
"description": "MVP - An app for facilitating the planning and organisation of fly-tipping cleanups",
"main": "server.js",
"dependencies": {
"aws-sdk": "^2.48.0",
"env2": "^2.1.1",
"handlebars": "^4.0.7",
"hapi": "^16.1.1",
"inert": "^4.2.0",
"node-sass": "^4.5.2",
"pg": "^6.1.5",
"vision": "^4.1.1"
},
"devDependencies": {
"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",
"husky": "^0.13.3"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run sass && node src/start.js",
"dev": "nodemon src/start.js",
"precommit": "npm run lint",
"lint": "./node_modules/.bin/eslint **.js",
"sass": "./node_modules/.bin/node-sass --source-map true ./public/style/sass/main.scss ./public/style/style.css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FACN1/litter-app.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/FACN1/litter-app/issues"
},
"homepage": "https://github.com/FACN1/litter-app#readme",
"engines": {
"node": "v7.4.0"
}
}