-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 920 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 920 Bytes
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
{
"name": "razmi",
"version": "1.0.0",
"description": "WP Startertheme",
"main": "index.js",
"repository": "https://github.com/gpsimpact/WP-Cold-Start.git",
"author": "joshuamitchell <joshua@gpsimpact.com>",
"license": "MIT",
"dependencies": {
"@wordpress/browserslist-config": "^2.2.2",
"autoprefixer": "^9.4.2",
"dotenv": "^6.2.0",
"node-sass": "^4.11.0",
"nodemon": "^1.18.9",
"postcss-cli": "^6.0.1",
"postcss-focus-within": "^3.0.0",
"uglify-js": "^3.4.9"
},
"browserslist": [
"extends @wordpress/browserslist-config"
],
"scripts": {
"build:style": "node-sass style.scss style.css --output-style postcss -r style.css",
"build:js": "uglifyjs assets/js/dev/*.js -o assets/js/main.min.js",
"build:theme": "node theme.config.js",
"watch": "nodemon -e scss,env,js -x \"yarn run build:theme && yarn run build:style && yarn run build:js\""
}
}