-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.47 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.47 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
{
"name": "test",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"browsersync": "browser-sync start --server --port 3333 './' --reload-delay 1000 --reload-debounce 1000 --files './styles/dist/*.css'",
"css:autoprefixer": "postcss --use autoprefixer -r --no-map ./styles/dist/styles.css",
"css:compile:dev": "node-sass -o ./styles/dist ./styles/src/styles.scss && npm run css:autoprefixer",
"css:compile:dist": "node-sass -o ./styles/dist ./styles/src/styles.scss && npm run css:autoprefixer && npm run css:minify",
"css:minify": "cssnano ./styles/dist/styles.css ./styles/dist/styles.css",
"css:watch": "onchange -w -d 1000 './styles/src/**/*.scss' -- npm run css:compile:dev",
"dev": "npm run browsersync & npm run css:watch",
"dist": "npm run css:compile:dist && npm run js:compile",
"js:compile": "r.js -o build.js"
},
"author": "Alessandro Muraro",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^6.7.7",
"browser-sync": "^2.18.8",
"clean-css-cli": "^4.0.12",
"concurrently": "^3.6.1",
"cssnano": "^3.10.0",
"cssnano-cli": "^1.0.5",
"node-sass": "^4.5.1",
"onchange": "^3.2.1",
"path": "^0.12.7",
"postcss": "^5.2.16",
"postcss-cli": "^3.0.0",
"requirejs": "^2.3.5",
"stylelint": "^9.4.0",
"stylelint-order": "^0.8.1",
"stylelint-scss": "^3.2.0"
},
"dependencies": {
"8": "0.0.1"
},
"browserslist": [
"> 1%",
"last 4 versions"
]
}