-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·59 lines (59 loc) · 1.82 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
59
{
"name": "marlin",
"version": "1.0.0",
"description": "Marlin scripts",
"author": "Marlin Communications",
"keywords": [
"WordPress",
"Theme"
],
"rtlcssConfig": {
"options": {
"autoRename": false,
"autoRenameStrict": false,
"blacklist": {},
"clean": true,
"greedy": false,
"processUrls": false,
"stringMap": []
},
"plugins": [],
"map": false
},
"main": "style.scss",
"scripts": {
"build-theme-css": "postcss -o style.css style/style.scss",
"build": "concurrently -c \"cyan,blue\" --names \"theme, blocks, css\" \"npm run build-theme-css\"",
"start": "nodemon -d scss -e scss -x \"npm run build\"",
"compile:css": "postcss style/style.scss -o style.css",
"compile:rtl": "rtlcss style.css style-rtl.css",
"lint:scss": "wp-scripts lint-style 'sass/**/*.scss'",
"lint:js": "wp-scripts lint-js 'js/*.js'",
"bundle": "dir-archiver --src . --dest ../_s.zip --exclude .DS_Store .stylelintrc.json .eslintrc .git .gitattributes .github .gitignore README.md composer.json composer.lock node_modules vendor package-lock.json package.json .travis.yml phpcs.xml.dist sass style.css.map",
"build_css": "tailwindcss build style/style.scss > style.css -u autoprefixer -b -r"
},
"dependencies": {
"autoprefixer": "^9.8.0",
"browserify": "^16.5.1",
"concurrently": "^5.2.0",
"node-sass": "^9.0.0",
"nodemon": "^2.0.4",
"parcel-bundler": "^1.12.4",
"postcss-cli": "^8.0.0",
"postcss-import": "^12.0.1",
"postcss-sass": "^0.4.4",
"sugarss": "^2.0.0",
"tailwindcss": "^1.5.2",
"tailwindcss-typography": "^3.1.0"
},
"browserslist": [
"defaults",
"last 6 version",
"safari >= 5",
"firefox >= 29"
],
"devDependencies": {
"@csstools/postcss-sass": "^5.1.1",
"postcss": "^8.4.35"
}
}