-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
77 lines (77 loc) · 2.66 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": "rubikscube",
"version": "1.0.0",
"description": "",
"main": "server/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run build-css & npm run build && npm run prod",
"build": "cross-env NODE_env=production webpack -p --progress --mode production",
"prod": "cross-env NODE_ENV=production node server/index.js",
"dev": "cross-env NODE_ENV=development concurrently --kill-others \"npm run server-dev\" \"npm run react-dev\"",
"react-dev": "npm run build-css & webpack -d --watch --mode development",
"server-dev": "nodemon server/index.js",
"build-css": "sass --watch client/src/main.scss client/dist/main.css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rogersanick/rubikscubesolver.git"
},
"author": "Nick Rogers",
"license": "MIT",
"bugs": {
"url": "https://github.com/rogersanick/rubikscubesolver/issues"
},
"homepage": "https://github.com/rogersanick/rubikscubesolver#readme",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-async-to-generator": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.0",
"concurrently": "^4.0.1",
"cross-env": "^5.2.0",
"file-loader": "^1.1.11",
"webpack": "^4.42.0"
},
"dependencies": {
"@material-ui/core": "^4.9.10",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.49",
"ajv": "^6.12.0",
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"css-loader": "^3.4.2",
"emotion": "^10.0.27",
"express": "^4.16.3",
"mysql": "^2.16.0",
"nodemon": "^1.18.2",
"opn": "^5.3.0",
"path": "^0.12.7",
"react": "^16.4.1",
"react-code-splitting": "^1.2.1",
"react-dom": "^16.4.1",
"react-hook-form": "^5.2.0",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-spinners": "^0.8.1",
"react-toggle": "^4.1.1",
"sass": "^1.9.0",
"smoothscroll": "^0.4.0",
"style-loader": "^1.1.3",
"three": "^0.94.0",
"webpack-async-await": "^1.1.0",
"webpack-cli": "^3.0.8"
}
}