-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.6 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "dash-nodets",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist/*",
"copy-assets": "ts-node tools/copyAssets",
"lint": "eslint --fix . --ext .js,.ts",
"tsc": "tsc",
"db": "tools/start-db.sh",
"browserify": "ts-node tools/bundleFrontendModules",
"build": "npm-run-all clean lint tsc copy-assets browserify",
"dev:start": "npm-run-all build start",
"dev": "nodemon --watch src -e ts,ejs,css --exec npm run dev:start",
"start": "forever .",
"force-install": "npm install --legacy-peer-deps",
"patch": "npx patch-package",
"install:patch": "npm-run-all force-install patch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jwbambacht/dash-nodets.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jwbambacht/dash-nodets/issues"
},
"homepage": "https://github.com/jwbambacht/dash-nodets#readme",
"keywords": [],
"dependencies": {
"@googlemaps/js-api-loader": "^1.14.3",
"bootstrap": "^5.1.3",
"bootstrap-icons": "^1.8.1",
"browserify": "^17.0.0",
"chart.js": "2.9.4",
"class-transformer": "^0.2.3",
"class-validator": "^0.11.0",
"crypto": "^1.0.1",
"dotenv": "^8.2.0",
"ejs": "^3.0.1",
"express": "^4.17.1",
"forever": "^4.0.3",
"lodash": "^4.17.21",
"moment": "^2.29.3",
"node-ical": "^0.15.1",
"pg": "^8.7.3",
"reflect-metadata": "^0.1.13",
"routing-controllers": "^0.8.1-alpha.2",
"socket.io": "2.4.1",
"socket.io-client": "^2.4.0",
"spotify-web-api-node": "^5.0.2",
"typedi": "^0.8.0",
"typeorm": "^0.2.22",
"typeorm-typedi-extensions": "^0.2.3",
"uuid": "^8.3.2",
"whatwg-fetch": "^3.6.2",
"winston": "^3.2.1",
"ws": "^8.8.1"
},
"devDependencies": {
"@types/bootstrap": "^5.1.11",
"@types/chart.js": "2.9.4",
"@types/cookie": "^0.5.1",
"@types/ejs": "^3.1.0",
"@types/express": "^4.17.2",
"@types/jest": "^27.4.1",
"@types/lodash": "^4.14.182",
"@types/node": "^13.7.4",
"@types/node-fetch": "^2.5.5",
"@types/shelljs": "^0.8.11",
"@types/socket.io": "2.1.10",
"@types/spotify-web-api-node": "^5.0.7",
"@types/uuid": "^8.3.4",
"@types/winston": "^2.4.4",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^2.21.0",
"@typescript-eslint/parser": "^2.21.0",
"eslint": "^6.8.0",
"node-fetch": "^2.6.0",
"nodemon": "^2.0.2",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"shelljs": "^0.8.5",
"ts-node": "^8.6.2",
"typescript": "^3.8.2"
}
}