-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.27 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
{
"name": "glc",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"styles": "postcss src/css/*.css -d assets/",
"copy": "copyfiles -f src/img/* src/fonts/* assets",
"scripts": "rollup -c",
"watch:copy": "onchange src/img/* src/fonts/* -i -- npm run copy",
"watch:styles": "npm run styles -- -w",
"watch:scripts": "npm run scripts -- -w",
"build:copy": "npm run copy",
"build:styles": "npm run styles -- --env production",
"build:scripts": "npm run scripts -- --environment BUILD:production",
"serve": "browser-sync start --config browsersync.config.js",
"start": "run-p serve watch:* --silent",
"build": "npm-run-all -p build:* --silent"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@barba/core": "^2.9.7",
"animejs": "^3.2.1"
},
"devDependencies": {
"browser-sync": "^2.26.14",
"copyfiles": "^2.4.1",
"cssnano": "^5.0.5",
"npm-run-all": "^4.1.5",
"onchange": "^7.1.0",
"postcss": "^8.3.0",
"postcss-cli": "^8.3.1",
"postcss-import": "^14.0.2",
"rollup": "^2.51.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"stylelint-config-standard": "^22.0.0"
}
}