-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.02 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
{
"name": "cat-fish-toe",
"version": "0.2.0",
"description": "Tic-tac-toe-like game",
"repository": {
"type": "git",
"url": "git+https://github.com/joydicurtis/tictactoe.git"
},
"author": "Yevheniia Nezhalska",
"license": "ISC",
"private": true,
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"dev": "webpack --mode development",
"start": "webpack-dev-server --mode development --open",
"watch": "webpack --mode development --watch"
},
"devDependencies": {
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^4.0.0",
"file-loader": "^6.2.0",
"style-loader": "^3.3.1",
"svg-url-loader": "^7.1.1",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"html-webpack-plugin": "^5.5.0",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "^2.6.1",
"node-sass": "^7.0.1",
"sass": "^1.53.0",
"sass-loader": "^13.0.0",
"sounds-webpack-plugin": "0.0.2"
}
}