-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.68 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.68 KB
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
{
"name": "rfgames",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "npx webpack-cli --mode development",
"build:prod": "npx webpack-cli --mode production",
"build:watch": "npx webpack-cli --mode development --watch",
"deploy": "npm run build && npm run hugo",
"deploy:prod": "npm run preload && npm run build:prod && npm run hugo:prod",
"hugo": "hugo --buildDrafts --buildFuture --environment development --templateMetrics --templateMetricsHints",
"hugo:prod": "hugo --environment production --enableGitInfo --minify",
"hugo:watch": "hugo serve --buildDrafts --buildFuture --environment development",
"preload": "node preload.js"
},
"author": "Yang Sheng Han <progamesigner@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/lz-string": "^1.3.34",
"@types/mithril": "^2.0.8",
"@types/ramda": "^0.27.63",
"@types/throttle-debounce": "^2.1.0",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"clipboard": "^2.0.8",
"css-loader": "^6.5.1",
"cssnano": "^5.0.15",
"csx": "^10.0.2",
"eslint": "^8.6.0",
"eslint-plugin-mithril": "^0.2.0",
"lz-string": "^1.4.4",
"mini-css-extract-plugin": "^2.4.6",
"mithril": "^2.0.4",
"node-fetch": "^3.2.10",
"normalize.css": "^8.0.1",
"postcss-loader": "^6.2.1",
"rambda": "^7.0.1",
"redux": "^4.1.2",
"sass": "^1.47.0",
"sass-loader": "^12.4.0",
"throttle-debounce": "^3.0.1",
"ts-loader": "^9.2.6",
"typescript": "^4.5.4",
"typestyle": "^2.2.0",
"url-loader": "^4.1.1",
"webpack": "^5.105.0",
"webpack-cli": "^4.9.1",
"webpack-manifest-plugin": "^4.1.1"
}
}