-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 757 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 757 Bytes
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
{
"name": "@kanshi/kanshi",
"version": "0.8.0",
"description": "",
"main": "index.js",
"dependencies": {
"dotenv": "^8.2.0",
"elm": "^0.19.1-3",
"express": "^4.17.1",
"mustache-express": "^1.3.0"
},
"devDependencies": {
"@babel/preset-env": "^7.5.4",
"http-server": "^0.12.3",
"nodemon": "^2.0.4",
"prettier": "^2.0.5"
},
"scripts": {
"client:build:dev": "elm make --output public/js/app.js client/Main.elm --debug",
"client:watch": "nodemon --watch client --ext elm --exec \"clear && npm run client:build:dev\"",
"server:watch": "nodemon --watch server --watch dev server/dev.js"
},
"author": "Valentin Manceaux-Panot",
"license": "ISC",
"publishConfig": {
"access": "public"
}
}