-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
30 lines (30 loc) · 918 Bytes
/
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
{
"name": "parents-calculator",
"private": true,
"version": "0.0.0",
"license": "GPL",
"dependencies": {
"rxjs": "^6.6.6"
},
"devDependencies": {
"@types/csv-parse": "^1.2.2",
"csv-parse": "^4.15.3",
"pug-cli": "^1.0.0-alpha6",
"serve": "^11.3.2",
"surge": "^0.21.7",
"ts-loader": "^8.0.17",
"ts-node": "^9.1.1",
"typescript": "^4.2.3",
"webpack": "^5.24.3",
"webpack-cli": "^4.5.0"
},
"scripts": {
"deploy": "surge dist $(cat CNAME)",
"serve": "serve dist",
"build": "yarn run build:html && yarn run build:js",
"build:data": "ts-node scripts/process-cohort.ts && ts-node scripts/process-period.ts",
"build:html": "pug index.pug -o dist",
"build:js": "webpack --mode production",
"watch": "find . -type f -name '*.ts' -o -name '*.pug' -o -name '*.json' -o -name '*.js' | grep -v node_modules | grep -v .cache | entr make"
}
}