-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.13 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
{
"name": "GD18",
"version": "1.0.0",
"description": "GD18",
"main": "build/index.js",
"homepage": "https://lanelps.github.io/GD18/",
"scripts": {
"start": "webpack-dev-server --hot",
"build": "webpack --mode production",
"deploy": "gh-pages -d build",
"send-it": "yarn build && yarn deploy"
},
"author": "Lane Le Prevost-Smith <[email protected]>",
"license": "MIT",
"dependencies": {
"extract-text-webpack-plugin": "^3.0.2",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"react-iframe": "^1.8.0",
"react-router": "^5.1.2",
"react-router-dom": "^5.0.1",
"react-scripts": "^3.2.0",
"url-loader": "^2.0.1"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.7.0",
"babel-loader": "^8.0.5",
"css-loader": "^3.0.0",
"file-loader": "^4.0.0",
"gh-pages": "^2.0.1",
"html-webpack-plugin": "^3.2.0",
"style-loader": "^1.0.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.9.0"
}
}