-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.8 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.8 KB
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
{
"name": "picode",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "node ./dist",
"start:dev": "npx tsc-watch --onSuccess \"node ./dist\"",
"build": "npx tsc",
"lint": "eslint --ext .js,.ts ./src",
"lint:fix": "eslint --ext .js,.ts ./src --fix",
"test": "mocha -r ts-node/register \"./test/**/*.test.ts\"",
"test:codecov": "nyc --reporter=lcov npm run test"
},
"dependencies": {
"adm-zip": "^0.5.5",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-ws": "^5.0.2",
"jsonwebtoken": "^8.5.1",
"memory-disk": "^1.0.3",
"moment": "^2.29.1",
"multer": "^1.4.2",
"node-pty": "^0.10.1",
"npm": "^8.1.0",
"open-graph": "^0.2.1",
"simple-git": "^2.41.1",
"source-map-support": "^0.5.20",
"uuid": "^8.3.2",
"winston": "^3.3.3",
"zip-a-folder": "^1.1.0"
},
"devDependencies": {
"@types/adm-zip": "^0.4.34",
"@types/chai": "^4.2.22",
"@types/compression": "^1.7.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.13",
"@types/express-ws": "^3.0.1",
"@types/jsonwebtoken": "^8.5.5",
"@types/mocha": "^9.0.0",
"@types/multer": "^1.4.7",
"@types/open-graph": "^0.2.2",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"chai": "^4.3.4",
"eslint": "7.29.0",
"mocha": "^9.1.2",
"nyc": "^15.1.0",
"ts-node": "^10.2.1",
"tsc-watch": "^4.4.0",
"typescript": "4.3.4"
}
}