-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.49 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.49 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "coder-dojo-master",
"version": "1.0.0",
"scripts": {
"prestart": "npm install --no-bin-links",
"start": "gulp",
"sample-data": "cd sample-data && node import-samples.js"
},
"dependencies": {
"angular": "~1.6",
"angular-resource": "~1.6",
"angular-route": "~1.6",
"browser-sync": "~2.23",
"browserify": "^15.2.0",
"browserify-shim": "^3.8.12",
"del": "~3.0",
"gulp": "^3.9.0",
"gulp-autoprefixer": "^4.1.0",
"gulp-changed": "^3.2.0",
"gulp-concat": "^2.6.0",
"gulp-load-plugins": "1.5.0",
"gulp-sass": "^3.1.0",
"gulp-sourcemaps": "^2.6.4",
"jquery": "~3.3.1",
"materialize-css": "~0.100",
"run-sequence": "^2.2.1",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^2.0.0",
"watchify": "^3.7.0",
"gulp-util": "latest"
},
"devDependencies": {
"request": "2.83.x"
},
"private": true,
"browser": {
"materialize-js": "./node_modules/materialize-css/bin/materialize.js",
"jquery": "./node_modules/jquery/dist/jquery.min.js",
"menu": "./client/assets/js/menu.js"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browserify-shim": {
"jquery": "$",
"menu": {
"depends": [
"jquery:jQuery"
]
},
"materialize-js": {
"exports": "Materialize",
"depends": [
"jquery:$"
]
}
}
}