-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 874 Bytes
/
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
{
"name": "rem-to-rem",
"version": "0.0.1",
"description": "Convert a rem value from one root font size to another.",
"main": "index.js",
"scripts": {
"build": "sass -I node_modules/@uswds/uswds/packages src/styles.scss src/styles.full.css && postcss src/styles.full.css -o src/styles.css",
"watch": "concurrently \"npm exec turbowatch\" \"http-server src -a 127.0.0.1 -o\"",
"serve": "http-server src -a 127.0.0.1"
},
"author": "",
"license": "ISC",
"dependencies": {
"@fullhuman/postcss-purgecss": "^5.0.0",
"@uswds/uswds": "^3.7.1",
"concurrently": "^7.6.0",
"cssnano": "^5.1.15",
"http-server": "^14.1.1",
"postcss": "^8.4.21",
"postcss-cli": "^10.1.0",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^8.0.1",
"purgecss": "^5.0.0",
"sass": "^1.59.3",
"turbowatch": "^2.2.3"
}
}