-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
43 lines (43 loc) · 1.23 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
35
36
37
38
39
40
41
42
43
{
"name": "gavel",
"version": "1.0.0",
"description": "Hackathon Judging System",
"repository": "[email protected]:weareasterisk/gavel.git",
"private": false,
"scripts": {
"build": "cross-env NODE_ENV=production postcss gavel/static/css/tailwind.scss -o gavel/static/generated.scss",
"build:watch": "cross-env NODE_ENV=development postcss gavel/static/css/tailwind.scss -o gavel/static/generated.scss -w"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^2.1.2",
"@tailwindcss/custom-forms": "^0.2.1",
"autoprefixer": "^9.7.6",
"cross-env": "^7.0.2",
"cssnano": "^4.1.10",
"postcss": "^7.0.27",
"postcss-cli": "^7.1.0",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-modules": "^1.5.0",
"postcss-nested": "^4.2.1",
"postcss-preset-env": "^6.7.0",
"postcss-scss": "^2.0.0",
"postcss-url": "^8.0.0",
"tailwindcss": "^1.2.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"tinycolor2": "^1.4.1"
}
}