-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.16 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
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "hikibiki-app",
"version": "0.0.1",
"description": "Look up words and stuff",
"main": "src/main.tsx",
"type": "module",
"devDependencies": {
"@babel/core": "7.26.0",
"@fullhuman/postcss-purgecss": "7.0.2",
"@relative-ci/agent": "4.2.14",
"autoprefixer": "10.4.20",
"babel-loader": "9.2.1",
"clean-webpack-plugin": "4.0.0",
"copy-webpack-plugin": "12.0.2",
"css-loader": "7.1.2",
"cssnano": "7.0.6",
"html-webpack-plugin": "5.6.3",
"husky": "9.1.7",
"lint-staged": "15.2.10",
"mini-css-extract-plugin": "2.9.2",
"postcss": "8.4.49",
"postcss-import": "16.1.0",
"postcss-loader": "8.1.1",
"prettier": "3.4.1",
"react-cosmos": "6.2.1",
"react-cosmos-plugin-webpack": "6.2.0",
"style-loader": "4.0.0",
"ts-loader": "9.5.1",
"typescript": "5.7.2",
"webpack": "5.96.1",
"webpack-cli": "5.1.4",
"webpack-dev-server": "5.1.0",
"workbox-webpack-plugin": "7.3.0"
},
"resolutions": {
"jackspeak": "3.4.3"
},
"scripts": {
"build": "webpack --define-process-env-node-env production",
"build:stats": "webpack --json --define-process-env-node-env production > webpack-stats.json",
"cosmos": "node --experimental-policy=cosmos-policy.json node_modules/react-cosmos/bin/cosmos.js --port 5001",
"build:cosmos": "node --experimental-policy=cosmos-policy.json node_modules/react-cosmos/bin/cosmos-export.js",
"postinstall": "husky",
"start": "webpack serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/birchill/hikibiki-app.git"
},
"keywords": [
"kanji",
"漢字"
],
"author": "Brian Birtles",
"bugs": {
"url": "https://github.com/birchill/hikibiki-app/issues"
},
"homepage": "https://hikibiki.app/",
"dependencies": {
"@birchill/bugsnag-zero": "0.7.0",
"@birchill/jpdict-idb": "^2.3.1",
"@birchill/normal-jp": "^1.5.0",
"idb-keyval": "^6.2.1",
"preact": "^10.17.0",
"tailwindcss": "^3.3.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": true
}
}