-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.66 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
57
58
{
"main": "src/server.ts",
"_moduleAliases": {
"src": "src",
"test": "test"
},
"scripts": {
"dev": "nodemon src/server",
"start": "npm run build && node build/src/server",
"test": "mocha --require ts-node/register 'src/tests/**/*.test.ts' --timeout 60000 --exit",
"deploy": "npm i && npm run build && npm start",
"build": "npm i && rm -rf build/ && tsc",
"migrate": "prisma migrate deploy",
"all": "npm run build && npm run test"
},
"dependencies": {
"@prisma/client": "^5.3.1",
"@types/axios": "^0.14.0",
"@types/cors": "^2.8.12",
"@types/ethereum-block-by-date": "^1.4.1",
"@types/express": "^4.17.13",
"@types/express-fileupload": "^1.2.2",
"@types/mocha": "^10.0.6",
"@types/morgan": "^1.9.3",
"@types/node": "^18.0.0",
"@types/sinon": "^17.0.2",
"@types/supertest": "^2.0.16",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^9.0.7",
"@types/validator": "^13.7.3",
"axios": "^0.27.2",
"chai": "^4.3.10",
"chai-http": "^4.4.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"eslint-config-codely": "^2.1.3",
"ethereum-block-by-date": "^1.4.9",
"ethers": "^6.7.1",
"express": "^4.18.1",
"mocha": "^10.2.0",
"mongodb": "^4.10.0",
"mongodb-typescript": "^3.0.0",
"morgan": "^1.10.0",
"nodemon": "^2.0.16",
"prettier": "^2.7.1",
"prisma": "^5.3.0",
"reflect-metadata": "^0.1.13",
"sinon": "^17.0.1",
"supertest": "^6.3.3",
"swagger-autogen": "^2.23.5",
"swagger-ui-express": "^5.0.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"uuid": "^9.0.1",
"yup": "^0.32.11"
}
}