-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.6 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
48
49
50
51
52
53
54
55
56
57
58
{
"name": "nhi-open-data-tool",
"version": "1.0.0",
"description": "應用健保署資料建置三好(好用、好查、好比)的查詢介面。",
"main": "index.js",
"scripts": {
"eslint": "node_modules/.bin/eslint functions tests && cd web && node_modules/.bin/eslint src",
"build": "npm run build:web",
"build:web": "cd web && npm run build && cd ..",
"deploy": "echo 'no backend yet'",
"process": "FORCE_CREATE=true node data/process.js",
"test": "node_modules/.bin/jest tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chunyenHuang/nhi-open-data-tool.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/chunyenHuang/nhi-open-data-tool/issues"
},
"homepage": "https://github.com/chunyenHuang/nhi-open-data-tool#readme",
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"jest": "^25.4.0",
"jest-expect-message": "^1.0.2"
},
"dependencies": {
"csvtojson": "^2.0.10",
"fs-extra": "^9.0.1",
"got": "^11.5.2",
"moment": "^2.27.0",
"moment-timezone": "^0.5.31",
"node-fetch": "^2.6.0",
"puppeteer": "^5.2.1",
"query-string": "^6.13.1",
"stats-lite": "^2.2.0",
"xlsx": "^0.16.5"
},
"jest": {
"collectCoverage": true,
"moduleFileExtensions": [
"js"
],
"testPathIgnorePatterns": [
"node_modules"
],
"setupFilesAfterEnv": [
"jest-expect-message"
],
"verbose": true
}
}