-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.22 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
{
"name": "ToneLoc",
"version": "0.1.0",
"description": "",
"author": "MBC",
"license": "UNLICENSED",
"repository": "https://github.com/PerStirpes/bashit",
"scripts": {
"start": "node -r dotenv/config ./bin/www",
"__start": "node -r dotenv/config ./bin/www",
"start:node": "node server.js",
"start:nodemon": "nodemon server.js",
"start:env": "nodemon -r dotenv/config server.js",
"debug": "DEBUG=* node -r dotenv/config ./bin/www",
"debug:calls": "NODE_DEBUG=request node ./bin/www",
"inspect": "node --inspect server.js",
"test": "standard",
"fix": "standard --fix"
},
"lint-staged": {
"linters": {
"*.js": [
"prettier-standard",
"git add"
]
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn test"
}
},
"dependencies": {
"body-parser": "1.18.3",
"cors": "^2.8.4",
"debug": "3.1.0",
"dotenv": "6.0.0",
"express": "4.16.2",
"node-fetch": "2.2.0",
"ramda": "0.25.0",
"raven": "2.6.3",
"watson-developer-cloud": "3.7.1"
},
"devDependencies": {
"husky": "^1.0.0-rc.13",
"lint-staged": "^7.2.0",
"nodemon": "^1.18.3",
"prettier-standard": "^8.0.1"
}
}