-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.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": "node-skeleton",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"knex": "./node_modules/.bin/knex",
"sass": "./node_modules/node-sass/bin/node-sass",
"local": "./node_modules/.bin/nodemon -e js --ignore public/ --ignore views/ --ignore db/ -L"
},
"author": "Lighthouse Labs",
"license": "ISC",
"dependencies": {
"body-parser": "^1.15.2",
"dotenv": "^4.0.0",
"ejs": "^2.4.1",
"express": "^4.13.4",
"knex": "^0.13.0",
"knex-logger": "^0.1.0",
"morgan": "^1.7.0",
"node-sass-middleware": "^0.11.0",
"pg": "^7.0.1",
"sweetalert": "^1.1.3",
"twilio": "^3.5.0"
},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.2",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.1.0",
"nodemon": "^1.9.2"
}
}