-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
43 lines (43 loc) · 1.31 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": "rubiks-cube",
"version": "1.0.0",
"description": "Rubik's Cube",
"author": "Aaron Bird",
"main": "index.js",
"scripts": {
"dev": "webpack-dev-server --config webpack.dev.js",
"build": "webpack --config webpack.build.js"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-proposal-object-rest-spread": "^7.10.1",
"@babel/plugin-transform-runtime": "^7.10.3",
"@babel/preset-env": "^7.10.2",
"@babel/preset-typescript": "^7.10.1",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"babel-loader": "^8.1.0",
"css-loader": "^3.6.0",
"eslint": "^7.2.0",
"eslint-config-google": "^0.14.0",
"file-loader": "^6.0.0",
"filemanager-webpack-plugin": "^2.0.5",
"fork-ts-checker-webpack-plugin": "4.1.6",
"html-webpack-plugin": "^4.3.0",
"mini-css-extract-plugin": "^0.9.0",
"sass": "^1.26.9",
"sass-loader": "^8.0.2",
"speed-measure-webpack-plugin": "^1.3.3",
"style-loader": "^1.2.1",
"typescript": "^3.9.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@tweenjs/tween.js": "^18.6.0",
"three": "^0.118.3"
}
}