-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.11 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.11 KB
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
{
"name": "myBGG",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:gregorycat/myBGG.git",
"author": "Grégory CAT <gregory.cat.gc@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "webpack-dev-server --mode=development --open",
"prod": "webpack --mode=production --open",
"serve": "babel-node src/server/start.js",
"start": "webpack-dev-server --open"
},
"dependencies": {
"file-loader": "^4.2.0",
"firebase": "^7.3.0",
"lodash": "^4.17.15",
"path": "^0.12.7",
"react": "^16.11.0",
"react-dom": "^16.11.0"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/node": "^7.7.0",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/preset-env": "^7.6.2",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.5",
"css-loader": "^3.2.0",
"html-webpack-plugin": "^3.2.0",
"style-loader": "^1.0.0",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1",
"webpack-dev-server": "^3.3.1"
}
}