-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.36 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
{
"name": "json-to-scss",
"version": "1.0.1",
"description": "Examples of compiling SCSS with tokens provided by a JSON file",
"author": "A17 <[email protected]> (https://area17.com/)",
"license": "MIT",
"scripts": {
"build": "npm run tokens && npm run sass",
"dev": "npm run tokens && concurrently --raw --kill-others \"npm:dev:*\"",
"dev:sass": "sass --watch --load-path=node_modules --load-path=./ --style=expanded --no-source-map ./sass.scss:./dist/application.css",
"dev:tokens": "npx nodemon --exitcrash --watch frontend.config.json -e json --exec npm run tokens",
"sass": "sass --load-path=node_modules --load-path=./ --style=expanded --no-source-map ./sass.scss:./dist/application.css",
"tokens": "node ./node_modules/.bin/json-to-scss frontend.config.json _tokens.scss --kv",
"webpack:build": "webpack",
"webpack:watch": "webpack --watch"
},
"dependencies": {
"@area17/scss-utilities": "^1.0.0"
},
"devDependencies": {
"concurrently": "^8.0.1",
"@epegzz/sass-vars-loader": "^6.1.0",
"json-to-scss": "github:area17/json-to-scss",
"mini-css-extract-plugin": "^2.6.1",
"nodemon": "^2.0.22",
"sass": "^1.53.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-fix-style-only-entries": "^0.6.1",
"css-loader": "^6.7.1",
"sass-loader": "^13.0.2",
"style-loader": "^3.3.1"
}
}