-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 861 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 861 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "trauma-informed-interface-design-system",
"version": "1.0.0",
"description": "Trauma-Informed UI Components Design System",
"homepage": "https://festa-design-studio.github.io/Trauma-Informed-Interface-Design-System",
"repository": {
"type": "git",
"url": "https://github.com/Festa-Design-Studio/Trauma-Informed-Interface-Design-System.git"
},
"scripts": {
"dev": "concurrently \"npm run build:css -- --watch\" \"npm run serve\"",
"build:css": "tailwindcss -i ./src/input.css -o ./src/output.css",
"build": "npm run build:css -- --minify",
"predeploy": "npm run build",
"deploy": "gh-pages -d src",
"serve": "live-server --port=3000 --open=/src/index.html"
},
"devDependencies": {
"concurrently": "^8.2.2",
"gh-pages": "^6.1.1",
"live-server": "^1.2.2",
"tailwindcss": "^3.4.17"
}
}