-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.72 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
59
60
61
62
63
64
{
"name": "my-meta-api",
"version": "1.0.0",
"description": "My Meta api server",
"main": "index.js",
"scripts": {
"start": "ts-node index.ts",
"dev": "nodemon",
"prod": "node dist/index.js",
"test": "mocha -r ts-node/register 'test/**/*.ts'",
"build": "tsc",
"prod-build": "ENVIRONMENT='production' gulp"
},
"author": "",
"dependencies": {
"@prisma/client": "^4.0.0",
"@types/chai": "^4.3.1",
"axios": "^0.27.2",
"bcrypt": "^5.0.1",
"chai": "^4.3.6",
"cors": "^2.8.5",
"dotenv": "^8.6.0",
"ethers": "^5.6.9",
"express": "^4.17.1",
"express-fileupload": "^1.4.0",
"express-validator": "^6.14.2",
"i": "^0.3.7",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mocha": "^10.0.0",
"mysql2": "^2.3.3",
"swagger-jsdoc": "^6.0.1",
"swagger-ui-express": "^4.1.6"
},
"devDependencies": {
"@faker-js/faker": "^7.3.0",
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.11",
"@types/express-fileupload": "^1.2.2",
"@types/jsonwebtoken": "^8.5.8",
"@types/lodash": "^4.14.182",
"@types/mocha": "^9.1.1",
"@types/node-fetch": "^2.6.2",
"@types/swagger-jsdoc": "^6.0.0",
"@types/swagger-ui-express": "^4.1.2",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"del": "^6.0.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"fancy-log": "^2.0.0",
"gulp": "^4.0.2",
"gulp-zip": "^5.1.0",
"nodemon": "^2.0.7",
"prisma": "^4.0.0",
"ts-loader": "^9.2.6",
"ts-node": "^10.8.2",
"typescript": "^4.1.3",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2",
"webpack-stream": "^7.0.0"
}
}