-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
57 lines (57 loc) · 1.92 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "tailwind-example",
"version": "0.3.1",
"description": "A tailwind starter package for rapid design prototyping for concretecms",
"repository": {
"type": "git",
"url": ""
},
"scripts": {
"test": "echo \"Error: no test specified\"",
"build": "cross-env NODE_ENV=production webpack --config webpack.config.js",
"build:profile": "cross-env NODE_ENV=production webpack --config webpack.config.js --profile --json > stats.json",
"build:prod": "cross-env NODE_ENV=production webpack --config webpack.config.js",
"build:dev": "cross-env NODE_ENV=development webpack --config webpack.config.js",
"build:c5": "cross-env NODE_ENV=production webpack --config webpack.config.js --env c5",
"watch": "cross-env NODE_ENV=development webpack --config webpack.config.js --watch --progress",
"dev": "cross-env NODE_ENV=development webpack serve --config=webpack.config.js --hot"
},
"keywords": [
"tailwind",
"tailwindcss",
"css",
"webpack",
"purgecss",
"postcss"
],
"author": "Derek Cameron",
"license": "MIT",
"devDependencies": {
"@babel/compat-data": "^7.11.0",
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"@tailwindcss/aspect-ratio": "^0.3.0",
"@tailwindcss/forms": "^0.3.4",
"@tailwindcss/typography": "^0.4.1",
"autoprefixer": "^10.2.5",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"cross-env": "^7.0.3",
"css-loader": "^5.2.1",
"cssnano": "^5.0.8",
"extract-loader": "^5.1.0",
"file-loader": "^6.2.0",
"html-loader": "^2.1.2",
"html-webpack-c5-theme-plugin": "^0.0.18",
"html-webpack-plugin": "^5.3.1",
"postcss": "^8.3.5",
"postcss-loader": "^5.2.0",
"raw-loader": "^4.0.2",
"sass": "^1.32.8",
"sass-loader": "^11.0.1",
"tailwindcss": "^2.2.17",
"webpack": "^5.76.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.3.1"
}
}