-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 848 Bytes
/
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
{
"name": "next-gen-coin",
"version": "0.0.1",
"description": "Next gen coin is a simple blockchain with typescript",
"type": "commonjs",
"devDependencies": {
"@types/node": "^16.11.10",
"ts-node": "10.7.0",
"typescript": "4.5.2"
},
"dependencies": {
"@types/express": "^4.17.18",
"@types/pino": "^7.0.5",
"@types/pino-pretty": "^5.0.0",
"colors": "^1.4.0",
"cors": "^2.8.5",
"crypto-js": "^4.1.1",
"express": "^4.18.2",
"mysql2": "^3.6.1",
"nodemon": "^3.0.1",
"pino": "^8.15.6",
"pino-pretty": "^10.2.3",
"reflect-metadata": "^0.1.13",
"typeorm": "0.3.17",
"uuid": "^9.0.1"
},
"scripts": {
"start": "ts-node src/index.ts",
"typeorm": "typeorm-ts-node-commonjs",
"dev": "nodemon src/index.ts"
}
}