-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 2.06 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "tic-tac-toe",
"version": "1.0.0",
"description": "A Tic Tac Toe game you can play in your browser!",
"private": true,
"scripts": {
"start": "webpack-dev-server --open --config ./webpack/webpack.dev.js",
"build": "webpack --config ./webpack/webpack.prod.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tarhi-saad/tic-tac-toe.git"
},
"keywords": [
"tic-tac-toe",
"vanilla JS",
"Factory Functions",
"The Module Pattern",
"Composition Over Inheritence"
],
"author": "Saad Tarhi",
"license": "MIT",
"bugs": {
"url": "https://github.com/tarhi-saad/tic-tac-toe/issues"
},
"homepage": "https://github.com/tarhi-saad/tic-tac-toe#readme",
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"@fortawesome/fontawesome-free": "^5.12.1",
"@fullhuman/postcss-purgecss": "^1.3.0",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.4.2",
"cssnano": "^4.1.10",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.1",
"file-loader": "^4.3.0",
"glob-all": "^3.1.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.8.2",
"node-sass": "^4.13.1",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"postcss-uncss": "^0.17.0",
"purify-css": "^1.2.5",
"purifycss-webpack": "^0.7.0",
"sass-loader": "^8.0.2",
"sugarss": "^2.0.0",
"svg-inline-loader": "^0.8.2",
"terser-webpack-plugin": "^1.4.1",
"thread-loader": "^2.1.3",
"uncss": "^0.17.3",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@babel/polyfill": "^7.8.7",
"babel-polyfill": "^6.26.0",
"bootstrap": "^4.4.1",
"core-js": "^3.6.4",
"jquery": "^3.4.1",
"mdbootstrap": "^4.14.0",
"popper.js": "^1.16.1"
}
}