-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
33 lines (33 loc) · 1.1 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
{
"name": "tailwind-theme",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"preview": "npm-run-all --parallel sync wpstart tailwindwatch",
"sync": "browser-sync start -p 'pacto.local' --files '**/*.php' 'build/*.js' 'build/*.css'",
"buildwp": "wp-scripts build",
"build": "npm-run-all --sequential buildwp tailwindbuild",
"wpstart": "wp-scripts start",
"start": "npm-run-all --parallel wpstart tailwindwatch",
"tailwindbuild": "tailwindcss -i ./assets/css/index.css -o ./build/index.css --minify",
"tailwindwatch": "tailwindcss -i ./assets/css/index.css -o ./build/index.css --watch --minify",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@tailwindcss/typography": "^0.5.2",
"@wordpress/scripts": "^23.3.0",
"browser-sync": "^2.27.10",
"npm-run-all": "^4.1.5",
"tailwindcss": "^3.1.4"
},
"dependencies": {
"@formkit/auto-animate": "^1.0.0-beta.6",
"framer-motion": "5.0.0",
"react": "16.8.4",
"react-dom": "16.8.4"
}
}