-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 793 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 793 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"scripts": {
"build-transform-light": "npx token-transformer tokens.json tokens/light.json global,light,theme global",
"build-transform-dark": "npx token-transformer tokens.json tokens/dark.json global,dark,theme global",
"build-transform": "npm run build-transform-light && npm run build-transform-dark",
"build-sd": "node build.js",
"build-tw": "postcss ./styles.css -o ./tailwind.css",
"build": "npm run build-transform && npm run build-sd && npm run build-tw"
},
"dependencies": {
"postcss-cli": "^9.0.1",
"style-dictionary": "^3.0.2"
},
"devDependencies": {
"autoprefixer": "^10.4.7",
"postcss": "^8.4.14",
"postcss-import": "^14.0.2",
"tailwindcss": "^2.2.19"
}
}