-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 843 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 843 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": "node-playground-api-javascript",
"version": "1.0.0",
"description": "synvert api javascript",
"main": "index.js",
"scripts": {
"start": "nodemon lib/app.ts",
"build": "tsc",
"test": "jest",
"watch:test": "jest --watch"
},
"author": "Richard Huang (flyerhzm@gmail.com)",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"aws-lambda": "^1.0.7",
"jest": "^27.5.1",
"nodemon": "^2.0.15",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0"
},
"dependencies": {
"@xinminlabs/node-mutation": "^1.1.1",
"@xinminlabs/node-query": "^1.8.5",
"body-parser": "^1.20.0",
"cors": "^2.8.5",
"express": "^4.17.3",
"morgan": "^1.10.0",
"typescript": "^4.7.3",
"vm2": "^3.9.10"
}
}