-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.07 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.07 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "node-algorithm",
"version": "1.0.0",
"description": "Nodejs server / burn code",
"main": "src/server.ts",
"scripts": {
"server": "node -r tsconfig-paths/register -r ts-node/register ./src/server.ts",
"start": "node --inspect -r tsconfig-paths/register -r ts-node/register ./src/server.ts",
"dev": "pm2 start pm2.config.js --env development",
"test": "jest --watch",
"lint": "eslint . --ext .ts",
"build": "tsc",
"profile": "sh ./scripts/profile.sh",
"docs": "opener http://localhost:8000 && mkdocs serve",
"docs:deploy": "mkdocs gh-deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/firestarter-io/node-algorithm.git"
},
"author": "slutske22",
"license": "ISC",
"bugs": {
"url": "https://github.com/firestarter-io/node-algorithm/issues"
},
"homepage": "https://github.com/firestarter-io/node-algorithm#readme",
"devDependencies": {
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@types/asciichart": "^1.5.6",
"@types/express": "^4.17.12",
"@types/jest": "^27.0.1",
"@types/leaflet": "^1.7.3",
"@types/lodash": "^4.14.170",
"@types/mathjs": "^9.4.2",
"@types/node": "^14.14.19",
"@typescript-eslint/eslint-plugin": "5.10.0",
"@typescript-eslint/parser": "5.10.0",
"chalk": "^4.1.2",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"opener": "^1.5.2",
"pm2": "^5.1.0",
"ts-node": "^10.0.0",
"typescript": "4.3.5",
"v8-profiler-next": "^1.5.0",
"wait-on": "^6.0.0"
},
"dependencies": {
"@firestarter.io/fuelmodels": "^0.1.0",
"@types/winston": "^2.4.4",
"asciichart": "^1.5.25",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"canvas": "^2.8.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"jest": "^27.1.1",
"leaflet": "^1.7.1",
"lodash": "^4.17.21",
"mathjs": "^9.4.3",
"module-alias": "^2.2.2",
"node-fetch": "^2.6.1",
"ts-replace-all": "^1.0.0",
"tsconfig-paths": "^3.10.1",
"uuid": "^8.3.2",
"winston": "^3.3.3",
"xyz-affair": "^0.9.1"
}
}