forked from palantir/policy-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 695 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 695 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "policy-bot",
"version": "1.0.0",
"repository": "https://github.com/palantir/policy-bot.git",
"license": "Apache-2.0",
"private": true,
"scripts": {
"copy": "npm-run-all -p copy:*",
"copy:img": "mkdir -p ./build/static && cp -R ./server/assets/img ./build/static",
"postcss": "postcss ./server/assets/css/main.css -o ./build/static/css/main.css",
"build": "npm-run-all -p postcss copy",
"build:production": "npm-run-all -p \"postcss --env production\" copy"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^1.0.1",
"cssnano": "^4.0.0-rc.2",
"npm-run-all": "^4.1.5",
"postcss-cli": "^5.0.1",
"tailwindcss": "^0.6.1"
}
}