-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
56 lines (56 loc) · 1.8 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
{
"name": "flowsense",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/yubowenok/flowsense",
"author": "Bowen Yu <[email protected]>",
"private": true,
"scripts": {
"start": "npm run build && node dist/src/server.js",
"build": "tsc -p tsconfig.json",
"lint": "tslint -c tslint.json -p tsconfig.json",
"watch-build": "tsc -w -p tsconfig.json",
"watch-node": "nodemon --inspect --debug=9230 dist/src/server.js",
"watch-lint": "nodemon -x npm run lint",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-lint\" \"npm run watch-build\" \"npm run watch-node\"",
"test": "jest --detectOpenHandles",
"watch-test": "jest --watch",
"gen-templates": "npm run build && node dist/src/script/gen-templates.js",
"similarity-server": "python src/script/similarity.py"
},
"dependencies": {
"@types/cors": "^2.8.4",
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"dotenv": "^6.0.0",
"errorhandler": "^1.5.0",
"express": "^4.16.2",
"lodash": "^4.17.15",
"merge": "^1.2.1",
"mixin-deep": "^1.3.2",
"request": "^2.83.0",
"set-value": "^2.0.1"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/dotenv": "^4.0.3",
"@types/errorhandler": "^0.0.32",
"@types/express": "^4.16.0",
"@types/glob": "^5.0.35",
"@types/jest": "^23.3.1",
"@types/lodash": "^4.14.116",
"@types/node": "^10.7.1",
"@types/request": "^2.47.1",
"@types/supertest": "^2.0.5",
"concurrently": "^3.6.1",
"glob": "^7.1.3",
"handlebars": "^4.4.2",
"jest": "^23.5.0",
"mem": "^5.1.1",
"nodemon": "^1.18.3",
"supertest": "^3.1.0",
"ts-jest": "^23.1.3",
"tslint": "^5.11.0",
"typescript": "^3.0.1"
}
}