-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.7 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
59
60
61
62
63
64
65
{
"name": "child-growth-charts",
"version": "1.0.0",
"description": "Web app to create WHO child growth charts",
"private": true,
"scripts": {
"start": "webpack --watch --mode=development",
"build": "webpack build --mode=production",
"test": "tsx node_modules/.bin/ospec test/**/*.spec.ts --preload test/test-setup.ts",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"postinstall": "ln -sf ../ospec/bin/ospec node_modules/.bin/ospec"
},
"keywords": [],
"author": "Frederik Leonhardt <[email protected]>",
"license": "ISC",
"engines": {
"node": ">=20 <23"
},
"dependencies": {
"@js-joda/core": "^5.6.2",
"chartist": "^1.3.0",
"mithril": "^2.2.2"
},
"devDependencies": {
"@types/jsdom": "^21.1.6",
"@types/mithril": "^2.2.6",
"@types/node": "20.11.5",
"@types/ospec": "^4.0.10",
"css-loader": "^6.11.0",
"gts": "^5.3.0",
"html-webpack-plugin": "^5.6.0",
"jsdom": "^24.0.0",
"mini-css-extract-plugin": "^2.9.0",
"mithril-query": "github:mithriljs/mithril-query#facf7ce",
"ospec": "^4.2.0",
"sass": "^1.75.0",
"sass-loader": "^14.2.1",
"style-loader": "^3.3.4",
"ts-loader": "^9.5.1",
"tsx": "^4.17.0",
"typescript": "^5.4.5",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"eslintConfig": {
"extends": "./node_modules/gts/",
"rules": {
"node/no-unpublished-import": "off",
"node/no-unpublished-require": "off",
"eqeqeq": [
"error",
"smart"
]
}
},
"eslintIgnore": [
"build/"
],
"prettier": "gts/.prettierrc.json"
}