-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 782 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 782 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
{
"name": "all-coin-dev",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"prestart": "npm run compile",
"compile": "tsc",
"test": "node test.js",
"start": "tsc && node dist/main.js",
"dev": "nodemon src/app.ts",
"build": "tsc -p ."
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.6",
"@types/node": "^14.0.12",
"@types/body-parser": "^1.19.0",
"@types/crypto-js": "^3.1.47",
"@types/ws": "^7.2.5",
"nodemon": "^2.0.4",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
},
"dependencies": {
"express": "^4.17.1",
"body-parser": "^1.19.0",
"cross-env": "^7.0.2",
"crypto-js": "^4.0.0",
"lodash": "^4.17.15",
"ws": "^7.3.0"
}
}