forked from timwis/jkan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.24 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
{
"name": "es6-boilerplate",
"version": "1.0.0",
"description": "Front-end project boilerplate with es6 build tools. Includes babel, webpack, and npm scripts.",
"main": "scripts/src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --progress --colors",
"watch": "NODE_ENV=development webpack -d -w",
"build": "webpack -p"
},
"repository": {
"type": "git",
"url": "git+https://github.com/timwis/es6-boilerplate.git"
},
"author": "timwis <tim@timwis.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/timwis/es6-boilerplate/issues"
},
"homepage": "https://github.com/timwis/es6-boilerplate#readme",
"devDependencies": {
"babel-core": "^6.5.1",
"babel-loader": "^6.2.2",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.5.0",
"webpack": "^1.12.13",
"webpack-dev-server": "^3.1.14"
},
"dependencies": {
"ampersand-state": "^5.0.0",
"bootstrap": "^3.3.6",
"github-api": "^2.3.0",
"jquery-deparam": "^0.5.2",
"jquery-serializejson": "^2.6.2",
"js-cookie": "^2.1.0",
"js-yaml": "^3.5.5",
"lodash": "^4.6.1",
"notie": "github:timwis/notie#string-types",
"select2": "^4.0.2"
}
}