-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 2.81 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
78
79
80
81
82
83
84
85
{
"name": "civ-drafter",
"version": "1.8.0",
"description": "A modern, mobile-friendly drafting tool for Sid Meier's Civilization VI.",
"main": "webpack.config.js",
"type": "module",
"imports": {
"#js/*": "./src/js/*",
"#json/*": "./src/json/*"
},
"scripts": {
"build": "webpack",
"build-prod": "cross-env NODE_ENV=production webpack && node ./scripts/generateSitemap.js",
"dev-server": "webpack serve",
"format:style": "prettier --write src/scss/**/*.scss",
"lint": "npm run lint:script && npm run lint:style",
"lint:script": "eslint src/js/**/*.{js,jsx} test/**/*.{js,jsx} *.{js,jsx}",
"lint:style": "stylelint src/scss/**/*.scss",
"release": "npm run test && npm run build",
"release-prod": "npm run test && npm run build-prod",
"test": "npm run lint && npm run test:script && npm run test:style-format",
"test:script": "webpack --config=webpack.config.test.js && mocha test-compiled/index.js",
"test:style-format": "prettier --check src/scss/**/*.scss"
},
"author": "Jake Zatecky",
"license": "GPL-3.0-or-later",
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/material": "^5.11.2",
"@popperjs/core": "^2.11.6",
"bootstrap": "^5.3.2",
"classnames": "^2.3.2",
"html2canvas": "^1.4.1",
"lodash": "^4.17.21",
"marked": "^14.0.0",
"prop-types": "^15.5.10",
"react": "^18.2.0",
"react-bootstrap": "^2.7.0",
"react-checkbox-tree": "^1.8.0",
"react-dom": "^18.2.0",
"rgb2hex": "^0.2.5"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/eslint-parser": "^7.14.4",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@testing-library/dom": "^10.0.0",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.4.3",
"babel-loader": "^9.0.0",
"chai": "^5.1.0",
"cross-env": "^7.0.3",
"css-loader": "^7.0.0",
"eslint": "^8.27.0",
"eslint-config-takiyon-react": "^5.0.0",
"eslint-import-resolver-webpack": "^0.13.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^4.2.0",
"fast-xml-parser": "^4.1.1",
"global-jsdom": "^24.0.0",
"globals": "^15.0.0",
"html-bundler-webpack-plugin": "^3.0.3",
"jsdom": "^24.0.0",
"mocha": "^10.0.0",
"postcss": "^8.4.20",
"postcss-scss": "^4.0.6",
"prettier": "^3.0.0",
"sass": "^1.57.1",
"sass-loader": "^14.0.0",
"sharp": "^0.33.1",
"sinon": "^18.0.0",
"style-loader": "^4.0.0",
"stylelint": "^16.0.2",
"stylelint-config-takiyon": "^4.0.0",
"webpack": "^5.3.2",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^5.0.1",
"workbox-webpack-plugin": "^7.0.0"
}
}