-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 3.4 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
86
87
88
89
90
91
92
93
94
95
{
"name": "destiny_focus",
"version": "1.0.0",
"description": "A Destiny the game app, helping you focus on improving your PvP or Raid game.",
"scripts": {
"build": "run-script-os",
"build:win32": "SET NODE_ENV=production && webpack --progress --color && npm run flask-static-digest",
"build:default": "NODE_ENV=production webpack --progress --color && npm run flask-static-digest",
"start": "run-script-os",
"start:win32": "concurrently -n \"WEBPACK,FLASK\" -c \"bgBlue.bold,bgMagenta.bold\" \"npm run webpack-watch:win32\" \"npm run flask-server\"",
"start:default": "concurrently -n \"WEBPACK,FLASK\" -c \"bgBlue.bold,bgMagenta.bold\" \"npm run webpack-watch\" \"npm run flask-server\"",
"webpack-watch": "run-script-os",
"webpack-watch:win32": "SET NODE_ENV=debug && webpack --mode development --watch",
"webpack-watch:default": "NODE_ENV=debug webpack --mode development --watch",
"flask-server": "flask run --host=0.0.0.0",
"flask-static-digest": "flask digest compile",
"lint": "eslint --fix \"assets/js/*/*\" --ext .js,.ts,.tsx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AllynH/destiny_focus.git"
},
"author": "Allyn Hunt",
"license": "MIT",
"engines": {
"node": ">=12"
},
"bugs": {
"url": "https://github.com/AllynH/destiny_focus/issues"
},
"homepage": "https://github.com/AllynH/destiny_focus#readme",
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.1",
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.11.2",
"@types/jest": "^27.0.1",
"@types/node": "^16.6.1",
"@types/react": "^17.0.18",
"@types/react-dom": "^17.0.9",
"@types/react-router-dom": "^5.1.8",
"bungie-api-ts": "^4.18.0",
"font-awesome": "^4.7.0",
"jquery": "^3.5.1",
"luxon": "^1.28.1",
"popper.js": "^1.15.0",
"react": "^16.14.0",
"react-component-export-image": "^1.0.5",
"react-dom": "^16.14.0",
"react-ga": "^3.3.0",
"react-redux": "^7.2.2",
"react-router": "^5.2.1",
"react-router-dom": "^5.2.0",
"react-tooltip": "^4.2.13",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"victory": "^36.6.8",
"webpack": "^5.76.0",
"webpack-cli": "^4.8.0"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/eslint-parser": "^7.15.0",
"@babel/eslint-plugin": "^7.14.5",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/runtime": "^7.12.5",
"@svgr/webpack": "^7.0.0",
"@types/luxon": "^2.3.2",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"concurrently": "^5.3.0",
"css-loader": "^5.2.6",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-css-modules": "^2.11.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-radar": "^0.2.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-react-redux": "^4.0.0",
"file-loader": "^6.2.0",
"less": "^3.13.0",
"mini-css-extract-plugin": "^2.2.2",
"raw-loader": "^4.0.2",
"run-script-os": "^1.1.3",
"ts-loader": "^9.2.5",
"typescript": "^4.4.3",
"url-loader": "^4.1.1"
}
}