-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
52 lines (52 loc) · 1.7 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
{
"name": "css-speedrun",
"version": "1.0.0",
"description": "A small project to test your CSS skiulls",
"main": "index.js",
"scripts": {
"css:autoprefixer": "postcss -u autoprefixer -r dist/*.css",
"css:scss": "node-sass --output-style compressed -o dist src/scss",
"build:assets": "copyfiles src/assets/* dist/assets --flat",
"build:css": "npm run css:scss && npm run css:autoprefixer",
"build:html": "copyfiles src/views/*.html dist --flat",
"build:js": "webpack --mode=production",
"build": "run-s build:*",
"serve": "browser-sync start --server \"dist\" --files \"dist\"",
"watch:assets": "onchange \"src/assets\" -- npm run build:assets",
"watch:css": "onchange \"src/scss\" -- npm run build:css",
"watch:html": "onchange \"src/views\" -- npm run build:html",
"watch:js": "onchange \"src/js\" -- webpack --mode=development",
"watch": "run-p serve watch:*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vincenius/css-speedrun"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/vincenius/css-speedrun/issues"
},
"homepage": "https://css-speedrun.netlify.app/",
"devDependencies": {
"@babel/preset-env": "^7.15.8",
"autoprefixer": "^10.3.7",
"babel-loader": "^8.2.2",
"browser-sync": "^2.27.5",
"copyfiles": "^2.4.1",
"imagemin-cli": "^7.0.0",
"node-sass": "^7.0.1",
"npm-run-all": "^4.1.5",
"onchange": "^7.1.0",
"postcss": "^8.3.9",
"postcss-cli": "^9.0.1",
"webpack": "^5.58.1",
"webpack-cli": "^4.9.0"
},
"dependencies": {
"@popperjs/core": "^2.11.2",
"easytimer.js": "^4.5.1",
"js-confetti": "^0.10.2",
"prismjs": "^1.26.0"
}
}