-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.37 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.37 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
{
"name": "PROJECT",
"version": "1.0.0",
"license": "MIT",
"description": "YOUR PROJECT DESCRIPTION HERE",
"author": "YOUR NAME",
"devDependencies": {
"@babel/core": "^7.16.10",
"@babel/plugin-transform-runtime": "^7.16.10",
"@babel/preset-env": "^7.16.11",
"@babel/runtime-corejs3": "^7.16.8",
"@neuekit/neuekit": "^1.1.1",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"autoprefixer": "^10.4.2",
"browser-sync": "2.26.7",
"core-js": "^3.20.3",
"npm-run-all": "^4.1.5",
"onchange": "^7.1.0",
"postcss": "^8.4.5",
"postcss-cli": "9.1.0",
"rollup": "^2.64.0",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.49.0",
"smoothscroll-polyfill": "^0.4.2"
},
"scripts": {
"serve": "browser-sync start --server --no-notify --files '.' --ignore 'node_modules'",
"scss": "sass --no-source-map -s compressed ./styles:./styles",
"autoprefixer": "postcss --use autoprefixer --replace ./styles/style.css --no-map",
"build:css": "run-s 'scss' 'autoprefixer'",
"build:js": "rollup --config",
"build": "run-s 'build:css' 'build:js'",
"watch:css": "onchange './styles/**/*.scss' -- npm run build:css",
"watch:js": "rollup --config --watch",
"watch": "run-p 'serve' 'watch:css' 'watch:js'",
"start": "npm run watch"
}
}