-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.31 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
{
"name": "@graffiticode/api",
"version": "0.0.2",
"description": "Gateway for compilers as a service.",
"author": "Art Compiler LLC",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/graffiticode/api"
},
"main": "build/src/app.js",
"dependencies": {
"@graffiticode/tracing": "^0.3.1",
"bent": "^7.3.12",
"child_process": "^1.0.2",
"errorhandler": "^1.5.1",
"express": "^4.19.2",
"hashids": "2.3.0",
"method-override": "^3.0.0",
"morgan": "^1.10.0",
"node-fetch": "^2.6.1",
"pg": "8.12.0",
"redis": "4.7.0",
"uuid": "^10.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.0.0",
"chai": "^5.1.1",
"graceful-fs": "^4.2.11",
"jest": "^29.7.0",
"nodemon": "^3.1.4",
"nyc": "^17.0.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"supertest": "^7.0.0",
"ts-jest": "^29.2.3",
"typescript": "^5.5.4",
"uglify-js": "^3.19.1"
},
"scripts": {
"start": "node -r @graffiticode/tracing build/src/app.js",
"build-dev": "node tools/build.js --build-dev",
"build": "node tools/build.js",
"pretest": "npm run build",
"test": "jest build/",
"dev": "nodemon --exec \"npm test && npm start\" --ignore \"build\"",
"coverage": "nyc npm run test"
}
}