-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.57 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": "tic-tac-toe",
"version": "1.0.0",
"description": "",
"author": {
"name": "nikita",
"email": "[email protected]"
},
"homepage": "https://github.com/nikitababko/tic-tac-toe.git",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --mode development --open --hot",
"build": "npm run clean && webpack --mode production",
"clean": "rimraf ./build/**/*",
"deploy": "gh-pages -d build"
},
"keywords": [],
"license": "ISC",
"browserslist": [
"> 1%",
"last 3 version"
],
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@zeit/next-css": "^1.0.1",
"autoprefixer": "^9.7.6",
"babel-loader": "^8.1.0",
"copy-webpack-plugin": "^5.1.1",
"css-hot-loader": "^1.4.4",
"css-loader": "^3.5.2",
"css-mqpacker": "^7.0.0",
"cssnano": "^4.1.10",
"file-loader": "^6.0.0",
"gh-pages": "^2.2.0",
"html-webpack-plugin": "^4.2.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.14.1",
"postcss-loader": "^3.0.0",
"rimraf": "^3.0.2",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.4",
"url-loader": "^4.1.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@fortawesome/react-fontawesome": "^0.1.9",
"react": "^16.13.1",
"react-dom": "^16.13.1"
}
}