-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.64 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
43
44
45
46
47
48
49
50
{
"name": "starter-npm",
"version": "1.0.0",
"description": "A project starter using only npm scripts",
"main": "index.html",
"scripts": {
"clean:build": "rm -rf public/scripts/* & rm -rf public/styles/*",
"browsersync": "browser-sync start --server public --files './' --port 3000 --no-ui",
"js:dev": "watchify -d -t babelify -t aliasify -t stringify -g glslify app/scripts/app.js -o public/scripts/bundle.js",
"js:build": "browserify -t babelify -t aliasify -t stringify -g glslify app/scripts/app.js | uglifyjs -o public/scripts/bundle.js",
"styles:dev": "node-sass -w app/styles/ -o public/styles/",
"styles:build": "node-sass --output-style compressed -w app/styles/ -o public/styles/",
"start": "npm run styles:dev & npm run js:dev & npm run browsersync ",
"build": "npm run styles:build & npm run js:build & npm run browsersync"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JeremieDrazic/starter-npm.git"
},
"author": "Jeremie Drazic",
"license": "ISC",
"bugs": {
"url": "https://github.com/JeremieDrazic/starter-npm/issues"
},
"homepage": "https://github.com/JeremieDrazic/starter-npm#readme",
"devDependencies": {
"aliasify": "*",
"babel-polyfill": "*",
"babel-preset-es2015": "*",
"babel-preset-stage-0": "*",
"babelify": "*",
"glslify": "*",
"glsl-noise": "*",
"browser-sync": "*",
"browserify": "*",
"node-sass": "*",
"stringify": "*",
"uglifyjs": "*",
"watch": "*",
"watchify": "*"
},
"aliasify": {
"aliases": {}
},
"dependencies": {
"aos": "^1.2.0",
"gsap": "^1.18.5",
"pixi.js": "^3.0.11"
}
}