-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.9 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
{
"name": "sky-starter-kit",
"version": "0.1.0",
"description": "A basic Front-End starter kit.",
"engines": {
"node": "4.2.2"
},
"main": "server.js",
"scripts": {
"test": "mocha test/test.js",
"lint": "eslint app/scripts/**/*.js",
"postinstall": "for file in `ls .git-hooks`; do ln -sf ../../.git-hooks/${file} .git/hooks/${file}; done"
},
"repository": {
"type": "git",
"url": "http://git.proximity.fr/proximity-mauritius/sky-starter-kit/"
},
"keywords": [
"front-end",
"starter",
"html5 boilerplate"
],
"author": "David Dias <diasd@proximity.bbdo.fr>",
"license": "MIT",
"dependencies": {
"body-parser": "^1.15.2",
"compression": "^1.6.2",
"cookie-parser": "^1.4.3",
"cors": "^2.7.1",
"errorhandler": "^1.4.3",
"express": "^4.14.0",
"express-session": "^1.14.0",
"helmet": "^2.1.2",
"method-override": "^2.3.6",
"normalize": "^0.3.1",
"serve-favicon": "^2.3.0"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.11.4",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.11.6",
"babelify": "^7.3.0",
"browser-sync": "^2.14.0",
"browserify": "^13.1.0",
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"cssnano": "^3.7.3",
"del": "^2.2.2",
"eslint": "^3.2.2",
"eslint-config-standard": "^5.3.5",
"eslint-friendly-formatter": "^2.0.6",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-html": "^1.5.1",
"eslint-plugin-import": "^1.12.0",
"eslint-plugin-jsx-a11y": "^2.0.1",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-standard": "^2.0.0",
"firebase-tools": "^3.0.6",
"gulp": "github:gulpjs/gulp#4.0",
"gulp-babel": "^6.1.2",
"gulp-cached": "^1.1.0",
"gulp-changed": "^1.3.2",
"gulp-eslint": "^3.0.1",
"gulp-imagemin": "^3.0.2",
"gulp-mocha": "^3.0.0",
"gulp-nodemon": "^2.1.0",
"gulp-plumber": "^1.1.0",
"gulp-postcss": "^6.1.1",
"gulp-pug": "^3.1.0",
"gulp-pug-lint": "^0.1.6",
"gulp-rename": "^1.2.2",
"gulp-sass": "^2.3.2",
"gulp-shell": "^0.5.2",
"gulp-sourcemaps": "^1.6.0",
"gulp-stylelint": "^3.0.0",
"gulp-uglify": "^2.0.0",
"immutable-css": "^1.1.2",
"jsonfile": "^2.3.1",
"lost": "^7.1.0",
"moment": "^2.14.1",
"postcss-cssnext": "^2.7.0",
"postcss-normalize": "^0.3.0",
"postcss-reporter": "^1.4.1",
"postcss-sassy-import": "^1.2.3",
"postcss-scss": "^0.1.9",
"precss": "^1.4.0",
"pug-lint": "^2.3.0",
"stylefmt": "^4.2.3",
"stylelint": "^7.1.0",
"stylelint-config-primer": "^1.1.0",
"stylelint-config-sass-guidelines": "^1.1.0",
"stylelint-config-standard": "^12.0.0",
"stylelint-declaration-use-variable": "^1.5.0",
"stylelint-scss": "^1.3.4",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"vinyl-transform": "^1.0.0",
"watchify": "^3.7.0",
"wiredep": "^4.0.0"
}
}