-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.1 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
{
"name": "react-tic-tac-toe",
"version": "0.2.0",
"description": "Tic-tac-toe made with React",
"keywords": [
"react-tic-tac-toe",
"tic-tac-toe"
],
"license": "MIT",
"dependencies": {
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"scripts": {
"start": "webpack-dev-server",
"build": "webpack"
},
"author": {
"name": "Ricardo do Rosario",
"email": "ricardorosario20@gmail.com"
},
"devDependencies": {
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0",
"style-loader": "^1.0.0",
"css-loader": "^3.2.0",
"file-loader": "^5.0.2",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"@babel/core": "^7.7.4",
"babel-loader": "^8.0.6",
"@babel/preset-env": "^7.7.4",
"@babel/preset-react": "^7.7.4",
"react-horizontal-stacked-bar-chart": "8.13.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}