-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 2.13 KB
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
{
"name": "tailwindcss-playground",
"version": "1.0.0",
"description": "A tailwindcss playground for rapidly building custom user interfaces in a local development environment. The playground is intended to expedite the frontend development of user interfaces all while being platform or management system agnostic.",
"scripts": {
"build": "NODE_ENV=production webpack",
"watch": "NODE_ENV=development webpack --watch",
"start": "NODE_ENV=development webpack serve --open",
"lint": "npm run lint:js; npm run lint:css",
"lint:fix": "npm run lint:js:fix; npm run lint:css:fix",
"lint:js": "eslint --ext .js assets/src/js",
"lint:js:fix": "eslint --ext .js assets/src/js --fix",
"lint:css": "stylelint assets/src/css/**/*.scss",
"lint:css:fix": "stylelint assets/src/css/**/*.scss --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Jason Comes",
"license": "ISC",
"dependencies": {
"autoprefixer": "^10.2.1",
"tailwindcss": "^2.0.2"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "7.12.1",
"@babel/plugin-proposal-decorators": "7.12.12",
"@babel/plugin-proposal-object-rest-spread": "7.12.1",
"@babel/preset-env": "^7.12.11",
"@webpack-cli/init": "^1.1.1",
"babel-loader": "^8.2.2",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"css-loader": "^5.0.1",
"css-minimizer-webpack-plugin": "^1.2.0",
"cssnano": "^4.1.10",
"eslint": "7.17.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "7.1.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-prettier": "3.3.0",
"html-webpack-plugin": "^5.0.0-beta.4",
"mini-css-extract-plugin": "^1.3.3",
"postcss": "8.2.3",
"postcss-import": "14.0.0",
"postcss-loader": "4.1.0",
"prettier": "2.2.1",
"sass": "^1.32.2",
"sass-loader": "^10.1.0",
"style-loader": "^2.0.0",
"stylelint": "^13.8.0",
"stylelint-config-sass-guidelines": "^7.1.0",
"terser-webpack-plugin": "^5.1.0",
"webpack": "^5.12.1",
"webpack-cli": "^4.3.1",
"webpack-dev-server": "^3.11.1"
}
}