-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.69 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "api",
"version": "0.0.0",
"scripts": {
"dev": "better-npm-run dev",
"start": "node_modules/.bin/nodemon dist/app.js",
"deploy": "node_modules/.bin/babel src --out-dir dist",
"lint": "better-npm-run lint",
"clean": "rm -rf dist",
"test": "./node_modules/.bin/mocha --compilers js:babel-core/register ./test --recursive --reporter spec",
"test:dev": "./node_modules/.bin/mocha --compilers js:babel-core/register ./test -w --recursive --reporter spec"
},
"betterScripts": {
"deploy": {
"command": "rm -rf dist && node_modules/.bin/babel src --out-dir dist",
"env": {
"NODE_ENV": "production"
}
},
"dev": {
"command": "./node_modules/.bin/nodemon --ignore '*.json' --exec ./node_modules/.bin/babel-node ./src/app.js",
"env": {
"NODE_ENV": "development"
}
},
"lint": {
"command": "./node_modules/.bin/eslint src",
"env": {
"NODE_ENV": "development"
}
}
},
"dependencies": {
"async": "^1.5.2",
"body-parser": "~1.13.2",
"cookie-parser": "~1.3.5",
"debug": "~2.2.0",
"express": "~4.13.1",
"file-exists": "^2.0.0",
"firebase": "^3.5.1",
"firebase-admin": "^4.0.2",
"hjs": "0.0.6",
"knox": "^0.9.2",
"lodash": "^4.16.6",
"moment": "^2.15.1",
"morgan": "~1.6.1",
"multer": "^1.3.0",
"sendgrid": "^2.0.0",
"twilio": "^2.9.1",
"uid": "0.0.2"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"better-npm-run": "~0.0.1",
"chai": "^3.5.0",
"eslint": "^3.10.2",
"mocha": "^3.1.2",
"nodemon": "^1.11.0",
"sinon": "^1.17.6",
"supertest": "^2.0.0"
}
}