forked from wooferzfg/tww-rando-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.1 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
{
"name": "tww-rando-tracker",
"version": "1.0.0",
"description": "Tracker for The Wind Waker Randomizer (Random Settings)",
"license": "GPL-3.0-or-later",
"scripts": {
"build": "webpack",
"build:production": "webpack --mode=production",
"docs": "jsdoc -c .jsdoc.json",
"lint": "eslint --max-warnings 0 \"scripts/**/*.js\" \"src/**/*.jsx\" \"src/**/*.js\" \"*.js\"",
"start": "webpack serve",
"test": "jest --maxWorkers=5",
"update-test-data": "npx babel-node scripts/update-test-data.js",
"verify-logic": "npx babel-node scripts/verify-logic.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Aelire/tww-rando-tracker.git"
},
"dependencies": {
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"memoizee": "^0.4.15",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-color": "^2.19.3",
"react-dom": "^18.3.1",
"react-loader-spinner": "^6.1.6",
"react-router-dom": "^6.23.0",
"react-toastify": "^10.0.5",
"react-toggle": "^4.1.3",
"react-tooltip": "^5.21.5"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/eslint-parser": "^7.24.1",
"@babel/node": "^7.23.9",
"@babel/plugin-transform-runtime": "^7.24.3",
"@babel/preset-env": "^7.24.5",
"@babel/preset-react": "^7.24.1",
"babel-loader": "^9.1.3",
"buffer": "^6.0.3",
"css-loader": "^7.1.1",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.2.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-sort-class-members": "^1.20.0",
"favicons": "^7.2.0",
"favicons-webpack-plugin": "^6.0.1",
"html-webpack-plugin": "^5.6.0",
"jest": "^29.7.0",
"jsdoc": "^4.0.2",
"moment": "^2.30.1",
"sass": "^1.75.0",
"sass-loader": "^14.2.1",
"source-map-loader": "^5.0.0",
"style-loader": "^4.0.0",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4",
"workbox-webpack-plugin": "^7.1.0"
}
}