-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.1 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
{
"name": "orbital",
"version": "1.0.0",
"description": "Orbital is a game designed to be played on LED strips",
"main": "dist/server.js",
"scripts": {
"build": "tsc",
"start": "cd dist && node server.js",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"watch:build": "tsc --watch",
"watch:start": "nodemon --exec npm run start",
"dev": "concurrently -n build,start \"npm run watch:build\" \"npm run watch:start\"",
"dev:full": "concurrently -n client,server -c yellow,green \"npm run dev\" \"cd client && npm run dev\"",
"test": "jest",
"test:watch": "jest --watch"
},
"contributors": [
"Protectator",
"Binary Brain"
],
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/Pecamo/orbital.git"
},
"engines": {
"node": ">=10.21.0 <11"
},
"bugs": {
"url": "https://github.com/Pecamo/orbital/issues"
},
"homepage": "https://github.com/Pecamo/orbital#readme",
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.8",
"@babel/preset-typescript": "^7.14.5",
"@types/axios": "^0.14.0",
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/express-ws": "^3.0.1",
"@types/jest": "^26.0.24",
"@types/lodash": "^4.14.171",
"@types/node": "^12.20.17",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"babel-jest": "^27.0.6",
"concurrently": "^6.3.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^24.7.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^27.0.6",
"nodemon": "^2.0.12",
"prettier": "^2.8.0",
"ts-jest": "^27.0.4",
"typescript": "4.3.5"
},
"dependencies": {
"@types/color-convert": "^2.0.0",
"axios": "^0.24.0",
"color-convert": "^2.0.1",
"color-temperature": "^0.2.7",
"cors": "^2.8.5",
"dgram-as-promised": "^5.0.1",
"dotenv": "^10.0.0",
"express": "^4.18.2",
"express-ws": "^5.0.2",
"lodash": "^4.17.21"
}
}