This repository has been archived by the owner on Jan 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.72 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
{
"name": "arnostneurad_portfolio",
"version": "1.0.0",
"description": "",
"author": "Arnost Neurad <[email protected]>",
"private": true,
"engine": "node >= 8.0.0",
"main": "app.js",
"scripts": {
"start": "NODE_ENV=production node app.js $PORT",
"test": "NODE_ENV=test mocha --recursive test",
"test:coverage": "nyc npm test",
"test:unit": "mocha --recursive test/middleware test/models test/routes",
"test:integration": "mocha --recursive test/integration"
},
"dependencies": {
"express": "^4.13.3",
"express-ejs-layouts": "^2.3.1",
"serve-favicon": "^2.3.0",
"morgan": "^1.6.1",
"cookie-parser": "^1.3.3",
"body-parser": "^1.13.3",
"compression": "^1.5.2",
"method-override": "^2.3.0",
"glob": "^6.0.4",
"ejs": "^2.3.1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"browser-sync": "^2.18.13",
"chai": "^3.5.0",
"chalk": "^2.1.0",
"classy-gulp": "^1.0.0",
"debug": "^2.2.0",
"dedent-js": "^1.0.1",
"del": "^3.0.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"gsap": "^1.20.4",
"gulp": "github:gulpjs/gulp#4.0",
"gulp-autoprefixer": "^4.0.0",
"gulp-load-plugins": "^1.5.0",
"gulp-nodemon": "^2.0.2",
"gulp-plumber": "^1.0.0",
"gulp-sass": "^3.0.0",
"gulp-sourcemaps": "^2.6.1",
"mocha": "^3.0.2",
"normalize.css": "^8.0.0",
"nyc": "^10.0.0",
"stylelint-config-standard": "^18.2.0",
"supertest": "^2.0.0",
"undertaker-forward-reference": "^1.0.1",
"vinyl-named": "^1.1.0",
"webpack-bundle-analyzer": "^2.9.0",
"webpack-stream": "^4.0.0",
"yargs": "^9.0.1"
}
}