-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.04 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
{
"name": "css-100",
"version": "1.0.0",
"description": "🎨 My version of the 100 Days of CSS challenge.",
"private": true,
"scripts": {
"build": "webpack --mode production",
"build:dev": "webpack --mode development",
"watch": "webpack --watch",
"start": "webpack serve --open --mode development",
"stats": "webpack --profile --json > stats.json"
},
"repository": {
"type": "git",
"url": "https://github.com/aniqatc/css-100.git"
},
"homepage": "https://css100.aniqa.dev/",
"keywords": [
"100 days of css",
"css challenge",
"css art",
"100 days of code"
],
"author": {
"name": "Aniqa",
"email": "[email protected]",
"url": "https://aniqa.dev"
},
"license": "MIT",
"devDependencies": {
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"html-webpack-plugin": "^5.5.3",
"image-webpack-loader": "^8.1.0",
"mini-css-extract-plugin": "^2.7.6",
"node-sass": "^9.0.0",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}