-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.29 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.29 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
{
"name": "rpizerosetup",
"version": "1.0.0",
"description": "Setup and configure an rpiZero with nodejs, typescript, yarn, pm2, and a test project",
"main": "./src/app.ts",
"scripts": {
"eslint-fix": "npx eslint src/** --fix",
"prebuild": "npm run eslint-fix",
"build": "tsc",
"prestart": "npm run build",
"start": "ts-node ./dist/app.js",
"dev": "nodemon ./src/app.ts",
"pm2": "pm2 start ./dist/app.js --watch",
"start-express": "ts-node ./src/express-test.ts",
"ts-repl": "ts-node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seadonk/rpiZeroSetup.git"
},
"keywords": [
"rpiZero"
],
"author": "Seadonk",
"license": "ISC",
"bugs": {
"url": "https://github.com/seadonk/rpiZeroSetup/issues"
},
"homepage": "https://github.com/seadonk/rpiZeroSetup#readme",
"dependencies": {
"express": "^4.17.1",
"global": "^4.4.0",
"nodemon": "^2.0.7",
"rpio": "^2.4.2",
"rxjs": "^6.6.6"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/morgan": "^1.9.2",
"@types/rpio": "^0.0.3",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"eslint": "^7.21.0",
"morgan": "^1.10.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.5"
}
}