-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·78 lines (78 loc) · 1.94 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "webgl",
"version": "1.0.0",
"description": "WebGL Experiments",
"author": "stevengrimaldo",
"license": "MIT",
"private": true,
"devDependencies": {
"amplify": "0.0.11",
"assemble": "^0.24.3",
"autoprefixer": "^6.0.0",
"babel": "^6.5.2",
"babel-core": "^6.18.2",
"babel-eslint": "^6.0.0",
"babel-preset-es2015": "^6.18.0",
"babel-register": "^6.18.0",
"babelify": "^7.3.0",
"browser-sync": "^2.9.1",
"browserify": "^13.1.1",
"cssnano": "^4.1.10",
"dat-gui": "^0.5.0",
"dat.gui": "^0.6.1",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^6.1.0",
"eslint-plugin-react": "^4.2.1",
"event-stream": "^3.3.4",
"factor-bundle": "^2.5.0",
"gsap": "^1.19.0",
"gulp": "^4.0.2",
"gulp-eslint": "^2.0.0",
"gulp-gh-pages": "^0.5.4",
"gulp-html-replace": "^1.5.1",
"gulp-imagemin": "^7.0.0",
"gulp-notify": "^2.2.0",
"gulp-postcss": "^6.0.0",
"gulp-prettify": "^0.5.0",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^1.5.2",
"gulp-uglify": "^1.4.0",
"handlebars": "^4.0.6",
"handlebars-helpers": "^0.10.0",
"hirestime": "^3.1.0",
"howler": "^2.0.2",
"imagemin-pngquant": "^8.0.0",
"jquery": "^3.1.1",
"node-static": "^0.7.9",
"postcss-nested": "^1.0.0",
"postcss-simple-extend": "^1.0.0",
"postcss-simple-vars": "^1.0.0",
"rimraf": "^2.4.3",
"run-sequence": "^1.1.2",
"three-js": "^79.0.0",
"uglify-js": "^2.7.5",
"vinyl-buffer": "^1.0.0",
"vinyl-fs": "^3.0.3",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.7.0"
},
"browserify": {
"transform": [
"babelify"
]
},
"scripts": {
"start": "npm run watch",
"watch": "gulp watch",
"build": "gulp build",
"deploy": "gulp deploy"
},
"config": {
"paths": {
"src": "src/",
"build": "dist/",
"drupal": "drupal/sites/all/themes/awlogy/",
"tasks": "_tasks/"
}
}
}