-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.61 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
{
"name": "PalmSpaceJS",
"version": "1.0.0",
"description": "Prototype for conducting user studies for hand interactions via browser and webcam.",
"main": "dist/app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node-sass public/study2/styles.scss public/study2/styles.css && tsc --noImplicitThis --watch & sleep 3 && firefox localhost:3000/study2 &>/dev/null & sleep 1 && nodemon --trace-warnings dist/app.js",
"kill": "DEBUG=app:startup,app:db,app:* && sudo kill $(ps -s $$ -o pid=); sudo kill -9 $(lsof -t -i:3000)",
"prod": "DEBUG=app:startup,app:db && node-sass public/styles.scss public/styles.css && tsc && node dist/app.js",
"clean_docker": "docker system prune -a",
"up": "docker-compose up"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prantoran/PalmSpaceJS.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/prantoran/PalmSpaceJS/issues"
},
"homepage": "https://github.com/prantoran/PalmSpaceJS#readme",
"devDependencies": {
"@types/debug": "^4.1.6",
"@types/express": "^4.17.11",
"@types/morgan": "^1.9.2",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.25.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-react": "^7.23.2",
"nodemon": "^2.0.7",
"typescript": "^4.2.4"
},
"dependencies": {
"debug": "^4.3.2",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"helmet": "^4.6.0",
"mariadb": "^2.5.3",
"morgan": "^1.10.0",
"node-sass": "^5.0.0"
}
}