-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
114 lines (114 loc) · 3.92 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "frontend-boilerplate",
"description": "An opinionated blueprint environment to quick start new front-end codebases",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/mirabeau-nl/frontend-boilerplate.git"
},
"scripts": {
"gulp": "node node_modules/gulp/bin/gulp.js",
"postinstall": "gulp githooks",
"start": "gulp dev",
"dev": "gulp dev",
"dist": "gulp dist",
"dist:static": "npm run dist -- --static",
"test": "gulp test",
"codequality": "gulp codequality",
"codestyle": "gulp codestyle",
"codestyleIsValid": "gulp codestyleIsValid",
"upload": "gulp upload"
},
"contributors": [
"Bran van der Meer <[email protected]> (http://bran.name/)",
"Rik Schennink <[email protected]> (http://rikschennink.nl/)",
"Niek Bosch <[email protected]>",
"Eric Weerstra <[email protected]> (http://visualformation.com/)",
"Arno Wolkers <[email protected]> (https://www.mirabeau.nl/)",
"Leendert Ullersma <[email protected]>",
"Christiaan Stegeman <[email protected]>",
"Sybren Wartna <[email protected]> (http://waarissyb.nl/)",
"Wouter Kroes <[email protected]> (http://www.wouterkroes.nl/)",
"Sanjay Twisk <[email protected]> (http://twisk-interactive.nl/)",
"Peeke Kuepers <[email protected]> (https://peeke.nl/)",
"Bram Swier <[email protected]> (https://www.mirabeau.nl/)",
"Marius de Corte <[email protected]> (https://marius.observer/)",
"Cosmin Epureanu <[email protected]> (http://cosminepureanu.com/)",
"Colin Aarts <[email protected]> (https://colinaarts.com)",
"Razvan Negrea <[email protected]> (http://www.wolfpilot.co/)",
"Dave Bitter <[email protected]> (https://davebitter.com)",
"Adriano Fernandes <[email protected]>"
],
"readmeFilename": "README.md",
"license": "BSD-3-Clause",
"prettier": {
"semi": false,
"singleQuote": true,
"tabWidth": 2
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/plugin-external-helpers": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"@babel/register": "^7.8.6",
"autoprefixer": "^9.7.4",
"babel-eslint": "^10.1.0",
"babelify": "^10.0.0",
"browser-sync": "^2.26.7",
"browserify": "^16.5.0",
"del": "^5.1.0",
"dotenv": "^8.2.0",
"errorify": "^0.3.1",
"eslint-config-prettier": "^6.10.0",
"glob": "^7.1.6",
"gulp": "4.0.2",
"gulp-changed": "^4.0.2",
"gulp-clean-css": "^4.2.0",
"gulp-data": "^1.3.1",
"gulp-eslint": "^6.0.0",
"gulp-ext-replace": "^0.3.0",
"gulp-filter": "^6.0.0",
"gulp-if": "^3.0.0",
"gulp-imagemin": "^7.1.0",
"gulp-mocha": "^7.0.2",
"gulp-nunjucks-render": "^2.2.3",
"gulp-postcss": "^8.0.0",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.0.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-stylelint": "^13.0.0",
"gulp-transform": "^3.0.5",
"gulp-uglify-es": "^2.0.0",
"gulp-util": "^3.0.8",
"gulp-zip": "^5.0.1",
"highlight.js": "^9.18.1",
"ignore": "^5.1.4",
"js-beautify": "^1.10.3",
"js-yaml": "^3.13.1",
"marked": "^0.8.0",
"nunjucks-includeData": "0.0.9",
"prettier": "1.19.1",
"require-globify": "^1.4.1",
"sass": "^1.35.2",
"sftp-upload": "^1.0.3",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-declaration-strict-value": "^1.7.12",
"stylelint-scss": "^3.20.1",
"vinyl": "^2.2.0",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
"watchify": "^3.11.1",
"zen-observable": "^0.8.15"
},
"dependencies": {
"@babel/runtime": "^7.8.7",
"eligrey-classlist-js-polyfill": "^1.2.20180112",
"normalize.css": "^8.0.1"
}
}