-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.19 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
{
"name": "firebase-workshop-chat",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "parcel src/index.html",
"deploy": "parcel build src/index.html --public-url ./",
"phoenix": "rm -Rf node_modules && npm i"
},
"keywords": [],
"author": "",
"license": "ISC",
"config": {
"lint": {
"target": "./src/**/*.js"
}
},
"dependencies": {
"@material-ui/core": "1.0.0",
"@material-ui/icons": "1.0.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-stay-scrolled": "2.1.1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^4.19.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-standard": "^3.0.1",
"node-sass": "^4.7.2",
"parcel-bundler": "1.6.2"
}
}