-
Notifications
You must be signed in to change notification settings - Fork 175
/
Copy pathpackage.json
47 lines (47 loc) · 1.44 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
{
"name": "@algorithm-visualizer/server",
"version": "2.0.0",
"title": "Algorithm Visualizer",
"description": "Algorithm Visualizer is an interactive online platform that visualizes algorithms from code.",
"scripts": {
"watch": "NODE_ENV=development NODE_PATH=src ts-node-dev --respawn --ignore-watch node_modules --no-notify src",
"start": "NODE_ENV=production NODE_PATH=src ts-node --transpile-only src",
"tslint": "tslint -c tslint.json -p tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/algorithm-visualizer/server.git"
},
"license": "MIT",
"devDependencies": {
"@types/compression": "0.0.36",
"@types/execa": "^0.9.0",
"@types/express": "^4.16.1",
"@types/fs-extra": "^7.0.0",
"@types/morgan": "^1.7.35",
"@types/node": "^12.0.0",
"@types/node-cron": "^3.0.1",
"@types/remove-markdown": "^0.1.1",
"@types/uuid": "^3.4.4",
"ts-node-dev": "^1.0.0-pre.39",
"tslint": "^5.16.0"
},
"dependencies": {
"aws-sdk": "^2.814.0",
"axios": "^0.21.2",
"body-parser": "^1.18.2",
"compression": "^1.7.3",
"dotenv": "^8.0.0",
"dotenv-flow": "^2.0.0",
"express": "^4.16.4",
"express-github-webhook": "^1.0.6",
"fs-extra": "^6.0.1",
"morgan": "^1.9.1",
"node-cron": "^3.0.0",
"remove-markdown": "^0.3.0",
"ts-httpexceptions": "^4.1.0",
"ts-node": "^8.1.0",
"typescript": "^3.4.5",
"uuid": "^3.3.2"
}
}