-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.06 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
{
"name": "webbuild",
"version": "0.0.5",
"description": "An editor for Duke Nukem 3D maps using (reasonably) modern web tech",
"private": true,
"scripts": {
"watch": "webpack --watch --config webpack.dev.js",
"build": "webpack --config webpack.prod.js"
},
"keywords": [],
"author": "Lewis Lane",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"babel-loader": "^8.0.6",
"redux-devtools": "^3.5.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@material-ui/core": "latest",
"@material-ui/icons": "4.5.1",
"@material-ui/lab": "4.0.0-alpha.29",
"dat.gui": "^0.7.6",
"gsap": "^2.1.3",
"jquery": "^3.4.1",
"react": "latest",
"react-dom": "latest",
"react-redux": "^7.1.1",
"redux": "^4.0.4",
"redux-starter-kit": "^1.0.0",
"redux-thunk": "^2.3.0"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
}
}