-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 965 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
33
34
35
36
37
38
{
"name": "web-execute",
"version": "1.0.0",
"license": "MIT",
"author": {
"name": "xkcm",
"email": "[email protected]"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "npx jest",
"clear-dist": "rm -rf dist/",
"build": "yarn clear-dist && npx tsc",
"dev": "export NODE_ENV=development && nodemon src/server/core/index.ts",
"run": "ts-node src/server/core/index.ts"
},
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.0",
"@types/mongoose": "^5.11.97",
"@types/node": "16",
"@types/supertest": "^2.0.11",
"jest": "^27.4.7",
"mongodb-memory-server": "^8.1.0",
"supertest": "^6.2.0",
"ts-jest": "^27.1.2",
"tsc": "^2.0.3",
"typescript": "^4.5.4"
},
"dependencies": {
"body-parser": "^1.19.1",
"dotenv": "^11.0.0",
"express": "^4.17.2",
"mongoose": "^6.1.6"
}
}