-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.64 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
58
{
"private": true,
"scripts": {
"build": "npm run build:css && npm run build:js",
"build:css": "postcss --env 'production' ./src/styles/main.css --dir ./dist",
"build:js": "babel ./src/scripts --out-dir ./dist",
"format": "prettier --write .",
"lint": "eslint .",
"watch": "concurrently \"npm run watch:css\" \"npm run watch:js\"",
"watch:css": "postcss ./src/styles/main.css --dir ./dist --watch",
"watch:js": "babel ./src/scripts --out-dir ./dist --watch"
},
"browserslist": {
"development": [
"> 0.5%"
],
"production": [
">= 1%",
"last 1 major version",
"not dead",
"Chrome >= 45",
"Firefox >= 38",
"Edge >= 12",
"Explorer >= 10",
"iOS >= 9",
"Safari >= 9",
"Android >= 4.4",
"Opera >= 30"
]
},
"dependencies": {
"autoprefixer": "^10.4.13",
"tailwindcss": "^3.2.4"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@fullhuman/postcss-purgecss": "^5.0.0",
"@prettier/plugin-php": "^0.19.2",
"@prettier/plugin-xml": "^2.2.0",
"babel-preset-minify": "^0.5.2",
"concurrently": "^7.6.0",
"cssnano": "^5.1.14",
"eslint": "^8.29.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"postcss": "^8.4.20",
"postcss-cli": "^10.1.0",
"postcss-import": "^15.1.0",
"postcss-sort-media-queries": "^4.3.0",
"prettier": "^2.8.1",
"prettier-plugin-sql": "^0.12.1",
"prettier-plugin-tailwindcss": "^0.2.1"
}
}