-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.33 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
47
{
"name": "lickilicky",
"version": "1.0.0",
"description": "track f&b partners over time",
"main": "index.js",
"author": "Jared Tong <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=12.16.1"
},
"repository": {
"type": "git",
"url": "https://github.com/tongrhj/lickilicky.git"
},
"scripts": {
"build": "tsc && mkdir -p dist/data && npm run data && npm run frontend",
"data": "node --unhandled-rejections=strict ./output/scripts/run.js",
"frontend": "cp -R assets dist/ && cp index.html dist/",
"lint": "prettier --check \"{lib,scripts}/*.ts\"",
"typecheck": "tsc --noEmit",
"test": "npm run lint && npm run typecheck",
"format": "prettier \"{lib,scripts}/*.ts\" --write",
"clean": "rm -rf ./dist ./output",
"deploy": "npx now dist --prod --confirm --no-clipboard --token"
},
"devDependencies": {
"@types/lodash": "^4.14.166",
"@types/tough-cookie": "^4.0.0",
"got": "^11.8.1",
"husky": "^4.3.6",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"query-string": "^6.13.8",
"replace-in-file": "^6.1.0",
"tough-cookie": "^4.0.0",
"typescript": "^4.1.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"date-fns": "^2.16.1",
"lodash": "^4.17.20"
}
}