-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.34 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.34 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
{
"name": "snowrunner-save-editor",
"version": "1.0.0",
"scripts": {
"dev": "webpack serve --config=webpack.dev.js",
"build": "webpack --config=webpack.ssg.js && node dist/ssg.js",
"test": "jest test",
"deploy": "pnpm build && gh-pages -d dist"
},
"dependencies": {
"@mdx-js/loader": "^3.1.1",
"@preact/compat": "^18.3.1",
"preact": "^10.28.4",
"preact-render-to-string": "^6.6.6",
"styled-components": "^6.3.11"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/plugin-syntax-jsx": "^7.28.6",
"@babel/plugin-transform-react-jsx": "^7.28.6",
"@babel/plugin-transform-runtime": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@babel/preset-react": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/styled-components": "^5.1.36",
"babel-loader": "^9.2.1",
"css-loader": "^7.1.4",
"dotenv": "^17.3.1",
"html-webpack-plugin": "^5.6.6",
"sass": "^1.97.3",
"sass-loader": "^16.0.7",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.4",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"url-loader": "^4.1.1",
"webpack": "^5.105.2",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.3"
},
"license": "MIT",
"resolutions": {
"styled-components": "^6.1.0"
}
}