-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.65 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.65 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "message-board-server",
"version": "1.0.0",
"description": "Message board server.",
"main": "src/index.js",
"scripts": {
"build": "tsc && npm run copystatic",
"buildwatch": "tsc --watch",
"copystatic": "node ./scripts/copy-static",
"dev": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Test,Node\" -c \"blue.bold,yellow.bold,cyan.bold\" \"npm run buildwatch\" \"npm run testwatch\" \"npm run watch-node\"",
"test": "tsc && ava",
"testwatch": "tsc && ava --watch",
"prod": "npm run build && node dist/cluster.js",
"watch-node": "nodemon dist/server.js --delay 1",
"travisci-test": "npm run copystatic && npm run test"
},
"repository": {
"type": "git",
"url": "https://github.com/CVBDL/message-board-server"
},
"author": "Patrick Zhong",
"license": "MIT",
"dependencies": {
"koa": "^2.5.0",
"koa-bodyparser": "^4.2.0",
"koa-multer": "^1.0.2",
"koa-router": "^7.4.0",
"mongoose": "^5.0.9"
},
"devDependencies": {
"@types/koa": "^2.0.44",
"@types/koa-bodyparser": "^4.2.0",
"@types/koa-multer": "^1.0.0",
"@types/koa-router": "^7.0.27",
"@types/mongoose": "^5.0.6",
"@types/supertest": "^2.0.4",
"ava": "^1.0.0-beta.3",
"concurrently": "^3.5.1",
"nodemon": "^1.17.2",
"shelljs": "^0.8.1",
"supertest": "^3.0.0",
"typemoq": "^2.1.0",
"typescript": "^2.7.2"
},
"ava": {
"files": [
"dist/**/*.spec.js"
],
"sources": [
"dist/**/*.js"
],
"concurrency": 5,
"failFast": true,
"failWithoutAssertions": false,
"tap": false,
"compileEnhancements": false,
"color": true,
"verbose": true
}
}