-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.97 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.97 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
{
"name": "esnext",
"version": "0.1.0",
"description": "A boilerplate for writing ES.next apps.",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/evenfrost/plate.esnext"
},
"scripts": {
"init": "npm install && node ./node_modules/jspm/jspm.js install",
"start": "node ./node_modules/gulp/bin/gulp.js",
"dev": "npm start",
"prod": "NODE_ENV=production node build/index.js",
"build": "node ./node_modules/gulp/bin/gulp.js build"
},
"dependencies": {
"babel-cli": "^6.2.0",
"babel-preset-es2015-node5": "^1.1.0",
"babel-preset-stage-2": "^6.1.18",
"gulp": "^3.9.0",
"jade": "^1.11.0",
"koa": "^2.0.0-alpha.3",
"koa-body": "^1.3.0",
"koa-bodyparser": "^3.0.0",
"koa-conditional-get": "^1.0.3",
"koa-convert": "^1.2.0",
"koa-error": "^1.1.3",
"koa-etag": "^2.1.0",
"koa-helmet": "^2.0.0-alpha.1",
"koa-logger": "^2.0.0",
"koa-methodoverride": "^2.0.0",
"koa-mount": "coderhaoxin/mount#next-by-promise",
"koa-router": "^7.0.0",
"koa-send": "^3.1.0",
"koa-static": "^2.0.0",
"koa-views": "^4.0.1"
},
"devDependencies": {
"babel-eslint": "^4.1.8",
"browser-sync": "^2.10.0",
"del": "^2.1.0",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^4.0.0",
"eslint-plugin-react": "^3.16.1",
"gulp-babel": "^6.1.0",
"gulp-changed": "^1.3.0",
"gulp-concat-css": "^2.2.0",
"gulp-filter": "^3.0.1",
"gulp-minify-css": "^1.2.1",
"gulp-nodemon": "^2.0.4",
"gulp-plumber": "^1.0.1",
"gulp-shell": "^0.x",
"gulp-stylus": "^2.1.0",
"gulp-watch": "^4.3.5",
"jspm": "^0.16.15",
"nib": "^1.1.0",
"run-sequence": "^1.1.5"
},
"author": "evenfrost",
"license": "MIT",
"jspm": {
"configFile": "jspm.config.js",
"dependencies": {},
"devDependencies": {
"babel": "npm:babel-core@^5.8.24",
"babel-runtime": "npm:babel-runtime@^5.8.24",
"core-js": "npm:core-js@^1.1.4"
}
}
}