-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.57 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
{
"name": "server",
"version": "1.0.0",
"description": "YT Advisors API server",
"main": "app/index.js",
"repository": {
"type": "git",
"url": "[email protected]:ytwguru/server.git"
},
"author": "Yomi Toba",
"license": "ISC",
"dependencies": {
"babel-cli": "^6.11.4",
"babel-core": "6.18.2",
"babel-preset-es2015": "^6.14.0",
"babel-register": "6.18.0",
"body-parser": "^1.15.2",
"compression": "^1.6.2",
"crypto": "0.0.3",
"debug": "2.3.2",
"dotenv": "^2.0.0",
"express": "^4.14.0",
"install": "0.8.2",
"lodash": "4.17.2",
"mandrill-api": "^1.0.45",
"mysql": "2.12.0",
"mysql2": "1.1.2",
"node-noop": "^1.0.0",
"node-uuid": "^1.4.7",
"npm": "4.0.2",
"path": "0.12.7",
"redux": "^3.5.2",
"request": "2.79.0",
"sequelize": "3.27.0",
"sequelize-cli": "2.5.1",
"socket.io": "1.7.1",
"stripe": "4.14.0",
"validator": "6.2.0"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-immutable": "^1.6.0",
"debug": "^2.2.0",
"eslint": "3.10.1",
"install": "0.8.2",
"npm": "4.0.2",
"webpack": "1.13.3"
},
"scripts": {
"eslint": "",
"stylelint": "",
"lint": "npm run eslint && npm run stylelint",
"test": "./node_modules/mocha/bin/mocha --compilers js:babel-core/register --require ./test/test.helper.spec.js 'test/**/*.@(js|jsx)'",
"test:watch": "npm run test -- --watch --watch-extensions jsx",
"deploy": "pm2 deploy ecosystem.json production",
"build": "pm2 startOrReload ecosystem.json",
"start": "node src/index.js"
}
}