-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·40 lines (40 loc) · 1.42 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
{
"name": "hart-vaugn",
"version": "1.0.0",
"author": "mcbeav",
"email": "422939+mcbeav@users.noreply.github.com",
"description": "Hart + Vaugn",
"homepage": "https://hartandvaugn.com",
"license": "MIT",
"keywords": [
"country",
"rock",
"music",
"alternative"
],
"main": "index.js",
"private": "true",
"scripts": {
"build": "npm run sass:build && npm run webpack:build",
"deploy": "npm run sass:production && npm run webpack:production",
"sass:build": "node-sass ./src/scss/main.scss ./public/css/stylesheet.css --functions ./node_modules/chromatic-sass/dist/main.js --output-style expanded --indent-type tab --indent-width 1",
"sass:production": "node-sass ./src/scss/main.scss ./public/css/stylesheet.css --functions ./node_modules/chromatic-sass/dist/main.js --output-style compressed",
"webpack:build": "NODE_ENV=development webpack",
"webpack:production": "NODE_ENV=production webpack"
},
"devDependencies": {
"@babel/core": "^7.19.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.18.9",
"@babel/preset-env": "^7.19.3",
"@babel/preset-typescript": "^7.18.6",
"babel-loader": "^8.2.5",
"chromatic-sass": "^0.1.8",
"copy-webpack-plugin": "^11.0.0",
"node-sass": "^7.0.1",
"qrcode": "^1.5.3",
"typescript": "^4.8.4",
"webpack": "^5.74.0",
"webpack-cli": "^5.1.4"
}
}