-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.11 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
{
"name": "2021-eusociality",
"version": "1.0.0",
"description": "Theme site for Lunar Gala 2021: Eusociality",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --open --config webpack.dev.js",
"deploy": "npm run build && gh-pages -d build",
"build": "webpack --config webpack.prod.js",
"lint": "eslint --ext .js src/",
"lint-fix": "eslint --fix --ext .js src/"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/lunar-gala/2021-eusociality.git"
},
"author": "lunargala",
"license": "ISC",
"bugs": {
"url": "https://github.com/lunar-gala/2021-eusociality/issues"
},
"homepage": "https://github.com/lunar-gala/2021-eusociality#readme",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@types/dat.gui": "^0.7.6",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.1.1",
"css-loader": "^4.3.0",
"eslint": "^7.9.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-react": "^7.20.6",
"file-loader": "^6.1.0",
"gh-pages": "^3.1.0",
"html-webpack-plugin": "^4.4.1",
"sass": "^1.26.10",
"sass-loader": "^10.0.2",
"style-loader": "^1.2.1",
"terser-webpack-plugin": "^4.2.3",
"url-loader": "^4.1.1",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.1.4"
},
"dependencies": {
"@material-ui/core": "^4.11.2",
"@tweenjs/tween.js": "^18.6.4",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-parallax": "^3.2.0",
"react-player": "^2.9.0",
"react-reveal": "^1.2.2",
"react-router-dom": "^5.2.0",
"react-svg-loader": "^3.0.3",
"react-transition-group": "^4.4.1",
"three": "^0.122.0"
}
}