-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.14 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.14 KB
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
{
"name": "cuckoo",
"version": "1.2.3",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rm -rf ./dist",
"test": "npm run build && mocha test",
"lint": "tslint --project tsconfig.json",
"build": "tsc",
"build:debug": "npm run clean && npm run build -- --sourceMap",
"build:clean": "npm run clean && npm run build",
"build:watch": "tsc -w",
"build:start": "npm run build:clean && npm start",
"start": "node dist/index.js",
"start:debug": "tsc && concurrently -s all \"tsc -w\" \"DEBUG=expresso:* nodemon dist/index.js\""
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@nxcd/paradox": "^2.9.2",
"@types/express": "^4.16.0",
"@types/mongodb": "^3.1.19",
"@types/node": "^10.12.18",
"axios": "^0.18.0",
"concurrently": "^4.1.0",
"nodemon": "^1.18.9",
"sugar-env": "^1.5.3",
"typescript": "^3.2.4"
},
"dependencies": {
"@expresso/expresso": "^0.15.1",
"@nxcd/paradox": "^2.9.2",
"@types/node": "^10.12.18",
"express-rescue": "^1.1.5",
"moment": "^2.23.0",
"mongodb": "^3.1.12",
"sugar-env": "^1.5.3"
}
}