-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 980 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 980 Bytes
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
{
"name": "truepill",
"version": "1.0.0",
"description": "Inventory",
"main": "index.js",
"scripts": {
"tsc": "tsc",
"dev": "ts-node-dev --respawn --transpileOnly ./lib/app.ts",
"prod": "tsc && node ./build/lib/app.js",
"test": "mocha -r ts-node/register test/**/*.test.ts --exit"
},
"author": "Jim Coffey",
"license": "ISC",
"dependencies": {
"@types/express": "^4.17.0",
"@types/socket.io": "^2.1.2",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-validator": "^5.3.1",
"http-errors": "^1.7.2",
"mysql2": "^1.6.5",
"socket.io": "^2.2.0",
"typescript": "^3.5.2"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.7",
"@typescript-eslint/eslint-plugin": "^1.10.2",
"@typescript-eslint/parser": "^1.10.2",
"chai": "^4.2.0",
"eslint": "^5.16.0",
"mocha": "^6.1.4",
"supertest": "^4.0.2",
"ts-node": "^8.3.0",
"ts-node-dev": "^1.0.0-pre.40"
}
}