-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
49 lines (49 loc) · 1.29 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": "fifteen-puzzle-game",
"version": "1.0.0",
"description": "The classic Fifteen Puzzle Game made with Vanilla JavaScript.",
"scripts": {
"start": "npx webpack serve --config webpack.dev.js",
"build": "npx webpack build --config webpack.prod.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Manussakis/fifteen-puzzle-game.git"
},
"browserslist": [
"last 2 version",
"> 0.5%",
"IE >= 11"
],
"keywords": [
"game",
"javascript",
"mvc",
"puzzle"
],
"author": "Gabriel Manussakis",
"license": "ISC",
"bugs": {
"url": "https://github.com/Manussakis/fifteen-puzzle-game/issues"
},
"homepage": "https://github.com/Manussakis/fifteen-puzzle-game#readme",
"devDependencies": {
"@babel/core": "^7.13.16",
"@babel/preset-env": "^7.13.15",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "*",
"css-loader": "^5.2.4",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.1",
"mini-css-extract-plugin": "^1.5.0",
"postcss": "^8.2.12",
"postcss-loader": "^5.2.0",
"postcss-preset-env": "^6.7.0",
"sass": "^1.32.11",
"sass-loader": "^11.0.1",
"webpack": "^5.35.1",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^4.8.1",
"webpack-merge": "^5.7.3"
}
}