-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.55 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
{
"name": "treecade",
"version": "0.1.0",
"description": "A video game platform in the shape of a Christmas tree",
"repository": {
"type": "git",
"url": "https://github.com/pplante/treecade"
},
"author": "Phil Plante",
"license": "MIT",
"scripts": {
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"build": "npm run build-ts && npm run lint",
"test": "jest --forceExit --verbose",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"lint": "tslint -p tsconfig.json",
"format": "prettier --write '**/*.{ts,js,css,json,md}'",
"copy-to-pi": "tsc && rsync -avr --exclude 'node_modules/' * [email protected]:~/treecade"
},
"dependencies": {
"async": "^3.1.0",
"dotenv": "^8.2.0",
"errorhandler": "^1.5.1",
"node-hid": "^1.1.0",
"pm2": "^4.2.1",
"terminal-kit": "latest",
"throttle-debounce": "^2.1.0",
"winston": "^3.2.1"
},
"optionalDependencies": {
"rpi-ws281x-v2": "latest",
"lcdi2c": "latest"
},
"devDependencies": {
"@types/errorhandler": "^0.0.32",
"@types/jest": "^24.0.18",
"@types/node-hid": "^0.7.3",
"@types/shelljs": "^0.8.5",
"@types/supertest": "^2.0.8",
"@types/terminal-kit": "^1.28.0",
"@types/throttle-debounce": "^2.1.0",
"@types/winston": "^2.4.4",
"jest": "^24.9.0",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"shelljs": "^0.8.3",
"supertest": "^4.0.2",
"ts-jest": "^24.1.0",
"ts-node": "^8.4.1",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.6.3"
}
}