-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.19 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.19 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
{
"name": "marko-gulp",
"version": "0.1.0",
"description": "Experiment: Marko server-side website with Gulp build tools.",
"main": "src/index.js",
"repository": "https://github.com/as3io/marko-gulp.git",
"author": "Jacob Bare <jacob@limit0.io>",
"license": "MIT",
"private": true,
"scripts": {
"dev": "NODE_ENV=development LIVERELOAD_PORT=37801 PORT=5000 ./node_modules/.bin/gulp",
"lint": "./node_modules/.bin/gulp lint",
"lint:js": "./node_modules/.bin/gulp lint:js",
"lint:scss": "./node_modules/.bin/gulp lint:scss"
},
"dependencies": {
"express": "^4.16.4",
"marko": "^4.15.3"
},
"devDependencies": {
"autoprefixer": "^9.4.10",
"chalk": "^2.4.2",
"cssnano": "^4.1.10",
"eslint": "^5.15.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"fancy-log": "^1.3.3",
"gulp": "^4.0.0",
"gulp-cached": "^1.1.1",
"gulp-eslint": "^5.0.0",
"gulp-livereload": "^4.0.1",
"gulp-postcss": "^8.0.0",
"gulp-sass": "^4.0.2",
"gulp-sourcemaps": "^2.6.5",
"gulp-stylelint": "^8.0.0",
"node-sass": "^4.11.0",
"stylelint": "^9.10.1",
"stylelint-config-twbs-bootstrap": "^0.3.0"
}
}