-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.96 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
{
"name": "terrain7",
"version": "0.0.1",
"description": "A terrain editor",
"main": "index.js",
"scripts": {
"start": "webpack serve --config webpack.dev.config.ts",
"build": "webpack --config webpack.prod.config.ts"
},
"repository": "https://github.com/seba1204/terrain7.git",
"author": "Sébastien PONT <[email protected]>",
"license": "GNUV3",
"private": true,
"devDependencies": {
"@babel/core": "^7.18.5",
"@babel/plugin-transform-runtime": "^7.18.5",
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"@babel/preset-typescript": "^7.17.12",
"@babel/runtime": "^7.18.3",
"@types/fork-ts-checker-webpack-plugin": "^0.4.5",
"@types/numjs": "^0.16.2",
"@types/react": "^18.0.12",
"@types/react-dom": "^18.0.5",
"@types/three": "^0.141.0",
"@types/webpack-dev-server": "^4.7.2",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"babel-loader": "^8.2.5",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.7.1",
"eslint": "^8.17.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-webpack-plugin": "^3.1.1",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^7.2.11",
"html-webpack-plugin": "^5.5.0",
"style-loader": "^3.3.1",
"ts-node": "^10.8.1",
"typescript": "^4.7.3",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.2",
"webpack-glsl-loader": "^1.0.1"
},
"dependencies": {
"@react-three/drei": "^9.13.1",
"@react-three/fiber": "^8.0.26",
"multiselect-react-dropdown": "^2.0.25",
"numjs": "^0.16.1",
"path-browserify": "^1.0.1",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-feather": "^2.0.10",
"react-input-slider": "^6.0.1",
"react-three-fiber": "^6.0.13",
"react-three-gui": "^0.4.2",
"three": "^0.141.0"
}
}