-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.38 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
{
"name": "rubiks-cube",
"version": "1.0.0",
"description": "Rubiks' Cube",
"main": "index.js",
"scripts": {
"test": "npm run test:eslint",
"test:eslint": "eslint src/",
"build": "webpack",
"start": "webpack-dev-server --config webpack.config.js --host 0.0.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/24seconds/RubiksCube.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/24seconds/RubiksCube/issues"
},
"eslintConfig": {
"globals": {
"window": true,
"browser": true,
"node": true
},
"extends": "airbnb"
},
"homepage": "https://github.com/24seconds/RubiksCube#readme",
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"@babel/runtime": "^7.16.7",
"babel-core": "^6.26.3",
"babel-loader": "^8.2.3",
"babel-preset-env": "^1.7.0",
"css-loader": "^6.5.1",
"cubejs": "^1.3.2",
"eslint": "^8.6.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"html-webpack-plugin": "^5.5.0",
"quaternion": "^1.2.1",
"style-loader": "^3.3.1",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.2"
}
}