-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·66 lines (66 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
{
"name": "netlife-craft-starter",
"version": "2.1.0",
"description": "Craft CMS project starter",
"main": "index.js",
"private": true,
"scripts": {
"start": "echo 'You probably want to $ npm run dev'",
"dev": "webpack --watch --devtool eval-source-map",
"build": "webpack -p --devtool source-map --progress",
"postinstall": "npm run build",
"heroku-postbuild": "mkdir public/admin && cp -R craft/app/resources public/admin",
"db:prod:download": "./docker-src/db-prod-download.sh",
"db:prod:tunnel": "./docker-src/db-prod-tunnel.sh",
"db:stage:push": "./docker-src/db-stage-push.sh",
"docker:db:rebuild": "./docker-src/docker-db-rebuild.sh"
},
"engines": {
"node": "8.x",
"npm": "5.x"
},
"author": "Netlife Research",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.0.0-beta.39",
"@babel/preset-env": "^7.0.0-beta.39",
"babel-loader": "^8.0.0-beta.0",
"browser-sync": "^2.23.6",
"browser-sync-webpack-plugin": "^1.2.0",
"css-loader": "^0.28.10",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.6",
"fuse.js": "^3.2.0",
"gsap": "^1.20.4",
"headroom.js": "^0.9.4",
"imagesloaded": "^4.1.4",
"jquery": "^3.3.1",
"jquery-inview": "^1.1.2",
"jquery-ui": "^1.12.1",
"jquery-ui-bundle": "^1.12.1-migrate",
"lazyload": "^2.0.0-beta.2",
"modernizr": "^3.6.0",
"picturefill": "^3.0.2",
"postcss-cssnext": "^3.1.0",
"postcss-import": "^11.0.0",
"postcss-loader": "^2.0.10",
"postcss-nested": "^3.0.0",
"sticky-js": "^1.2.0",
"style-loader": "^0.20.1",
"tocbot": "^4.3.2",
"typed.js": "^2.0.6",
"vue2-autocomplete": "git://github.com/nystudio107/vue2-autocomplete.git#master",
"webpack": "^3.10.0"
},
"standard": {
"ignore": [
"craft",
"public/js/dist.js",
"public/vendor"
]
},
"devDependencies": {
"node-sass": "^4.7.2",
"sass-loader": "^6.0.7"
}
}