-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.97 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
{
"name": "squeegee-client",
"version": "0.1.0",
"description": "The client for the Squeegee Whiteboard application",
"private": true,
"dependencies": {
"@babel/runtime": "^7.4.3",
"axios": "^0.18.0",
"immutability-helper": "^3.0.0",
"materialize-css": "^1.0.0",
"paper": "^0.12.0",
"prop-types": "^15.7.2",
"react": "^16.8.4",
"react-color": "^2.17.0",
"react-dom": "^16.8.4",
"react-materialize": "^3.0.5",
"react-router-dom": "^5.0.0",
"socket.io-client": "^2.2.0"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.3.4",
"@babel/node": "^7.2.2",
"@babel/plugin-transform-runtime": "^7.4.3",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.5",
"clean-webpack-plugin": "^2.0.1",
"css-loader": "^2.1.1",
"eslint": "^5.15.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"favicons-webpack-plugin": "0.0.9",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.5.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^2.1.2",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1",
"webpack-merge": "^4.2.1"
},
"scripts": {
"dev": "webpack-dev-server --open --config config/webpack.dev.js",
"build": "webpack --config config/webpack.prod.js",
"build-dev": "webpack --config config/webpack.dev.js",
"lint": "eslint --ignore-path .gitignore --ext .jsx,.js .",
"node": "babel-node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/squeegee-whiteboard/client.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/squeegee-whiteboard/client/issues"
},
"homepage": "https://github.com/squeegee-whiteboard/client#readme"
}