-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
90 lines (90 loc) · 3.04 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
{
"name": "minecraft-threejs",
"version": "1.0.0",
"description": "",
"main": "index.js",
"author": "",
"license": "ISC",
"scripts": {
"eslint": "eslint ./src/**/*.js",
"start": " cross-env NEUTRINO_CONFIG=client webpack-dev-server --mode development --env=int1",
"build": "webpack --mode production"
},
"dependencies": {
"@types/dat.gui": "^0.7.5",
"@types/noisejs": "^0.0.28",
"@types/three": "^0.103.2",
"classnames": "^2.2.6",
"dat.gui": "^0.7.7",
"history": "^5.0.0",
"lodash": "^4.17.15",
"mobx": "^5.0.3",
"mobx-react": "^5.2.3",
"noisejs": "^2.1.0",
"p-queue": "^6.4.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router": "^5.2.0",
"react-router-config": "^5.1.1",
"react-router-dom": "^5.2.0",
"three": "^0.117.1",
"worker-loader": "^2.0.0",
"jquery": "^3.5.1"
},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/node": "^7.10.1",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-proposal-export-default-from": "^7.10.1",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.4.4",
"@babel/plugin-proposal-optional-chaining": "^7.6.0",
"@babel/plugin-syntax-async-generators": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-async-to-generator": "^7.5.0",
"@babel/plugin-transform-modules-commonjs": "^7.5.0",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.6.0",
"@neutrinojs/copy": "^9.2.0",
"@neutrinojs/react": "^9.2.0",
"@types/lodash": "^4.14.155",
"@types/react": "^16.8.23",
"@types/react-dom": "^16.8.5",
"@types/react-router": "^5.0.3",
"@types/react-router-config": "^5.0.0",
"@types/react-router-dom": "^4.3.4",
"@types/styled-components": "^5.1.0",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"babel-eslint": "^10.1.0",
"babel-plugin-jsx-control-statements": "^4.0.0",
"babel-plugin-module-resolver": "^3.2.0",
"babel-plugin-styled-components": "^1.10.6",
"cross-env": "^7.0.2",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"express": "^4.16.3",
"fork-ts-checker-webpack-plugin": "^5.0.0",
"jsx-control-statements": "^3.2.8",
"neutrino": "^9.2.0",
"node-sass": "^4.14.1",
"prettier": "^2.0.5",
"sass-loader": "^8.0.2",
"styled-bootstrap-grid": "^3.1.0",
"styled-components": "^5.1.1",
"styled-spinkit": "^1.1.0",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-custom-processor-loader": "^0.6.0",
"stylelint-processor-styled-components": "^1.10.0",
"typescript": "^3.9.5",
"webpack": "^4.43.0",
"webpack-chain": "^6.4.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
}
}