-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.17 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.17 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "prototype-starter-kit",
"version": "1.1.0",
"description": "a starter kit with SASS, Gulp and Budo for quick prototyping",
"main": "index.js",
"scripts": {
"prestart": "npm run clean",
"start": "gulp serve",
"open": "npm run start -- --open",
"prebundle": "npm run clean",
"bundle": "gulp bundle --production",
"predeploy": "npm run clean",
"deploy": "gulp bundle && git subtree push --prefix dest origin gh-pages",
"clean": "gulp clean",
"test": "zuul -- source/**/*.test.js"
},
"keywords": [
"html",
"css",
"sass",
"webpack"
],
"author": "Patrick Gerritsen",
"license": "MIT",
"dependencies": {
"autoprefixer": "^6.5.4",
"babel-core": "^6.24.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.3.2",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.18.0",
"babel-register": "^6.24.0",
"bluebird": "^3.4.7",
"browser-sync": "^2.18.5",
"clean": "^4.0.2",
"compression": "^1.6.2",
"cssnano": "^3.9.1",
"envify": "^4.0.0",
"eslint": "^3.17.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"glob": "^7.1.1",
"global": "^4.3.1",
"gulp": "^3.9.1",
"gulp-clean": "^0.3.2",
"gulp-if": "^2.0.2",
"gulp-plumber": "^1.1.0",
"gulp-postcss": "^6.3.0",
"gulp-rename": "^1.2.2",
"gulp-sass": "^3.0.0",
"gulp-sourcemaps": "^1.9.1",
"gulp-uglify": "^2.1.0",
"gulp-util": "^3.0.7",
"gulp-watch": "^4.3.11",
"gulp-yaml": "^1.0.1",
"lodash": "^4.17.4",
"loose-envify": "^1.3.0",
"normalize.css": "^5.0.0",
"postcss-assets": "^4.1.0",
"postcss-import": "^9.0.0",
"strip-ansi": "^3.0.1",
"tape": "^4.6.3",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.8.0",
"webpack": "^2.2.1",
"webpack-dev-middleware": "^1.10.1",
"webpack-hot-middleware": "^2.17.0",
"yargs": "^6.5.0",
"zuul": "^3.11.1"
}
}