This repository has been archived by the owner on Sep 19, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.51 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
{
"name": "candyland",
"version": "0.1.0",
"description": "Tracks the turns and drawn cards of a Candyland game.",
"main": "src/main.js",
"scripts": {
"build": "webpack --mode production",
"dev": "webpack --mode development",
"serve": "webpack-dev-server --mode=development --hot"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neillrobson/candyland.git"
},
"keywords": [
"card",
"game"
],
"author": "Neill Robson",
"license": "ISC",
"bugs": {
"url": "https://github.com/neillrobson/candyland/issues"
},
"homepage": "https://github.com/neillrobson/candyland#readme",
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"autoprefixer": "^9.8.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.1.0",
"babel-preset-env": "^1.7.0",
"clean-webpack-plugin": "^2.0.2",
"css-loader": "^2.1.1",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"lit-html": "^1.2.1",
"mini-css-extract-plugin": "^0.5.0",
"postcss": "^7.0.32",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"style-loader": "^0.23.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"webpack-pwa-manifest": "^4.2.0",
"workbox-webpack-plugin": "^4.3.1"
},
"browserslist": [
"last 1 version",
"> 1%",
"ios_saf 7",
"safari 6"
]
}