-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.38 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.38 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
{
"name": "passapapi",
"version": "1.0.0",
"main": "./src/app.js",
"type": "module",
"scripts": {
"initDB": "node --loader ts-node/esm ./src/db/setup.ts",
"devtest": "node ./index.js",
"dev": "node --loader ts-node/esm ./src/app.ts",
"start": "node dist/app.js",
"build": "tsc && cpy \"src/**/*.html\" dist && cpy \"src/**/*.css\" dist && cpy \"src/**/*.js\" dist && cpy \"src/**/*.css.map\" dist && cpy \"src/**/*.sh\" dist && chmod +x dist/scripts/*.sh",
"sass": "sass styles.scss ./src/public/styles.css -w"
},
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@serialport/bindings-cpp": "^12.0.1",
"@serialport/bindings-interface": "^1.2.2",
"@serialport/parser-readline": "^12.0.0",
"@serialport/stream": "^12.0.0",
"@types/express": "^4.17.21",
"@types/node": "^20.12.13",
"@types/serialport": "^8.0.5",
"child_process": "^1.0.2",
"cpy-cli": "^6.0.0",
"dotenv": "^16.4.5",
"drivelist": "^12.0.2",
"express": "^4.19.2",
"express-validator": "^7.1.0",
"fs-await": "^1.0.3",
"http": "^0.0.1-security",
"nodemon": "^3.1.2",
"os": "^0.1.2",
"path": "^0.12.7",
"pg": "^8.12.0",
"serialport": "^12.0.0",
"sharp": "^0.34.3",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"url": "^0.11.3",
"ws": "^8.17.1",
"xss": "^1.0.15"
},
"devDependencies": {
"@types/pg": "^8.11.6",
"@types/ws": "^8.5.10",
"sass": "^1.77.8"
}
}