-
Notifications
You must be signed in to change notification settings - Fork 113
/
package.json
47 lines (47 loc) · 1.2 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
{
"name": "your-app",
"description": "Description",
"author": "Your Name",
"version": "0.0.1",
"repository": {
"type": "git",
"url": ""
},
"scripts": {
"start": "webpack-dev-server --open",
"prebuild": "rm -rf ./public/",
"build": "npm run lint && webpack -p",
"lint": "eslint app",
"test-ci": "mocha-webpack",
"test": "mocha-webpack --watch"
},
"dependencies": {
"backbone": "~1.3.3",
"backbone.marionette": "^3.0.0",
"jquery": "~1.12.2",
"underscore": "^1.8.3"
},
"devDependencies": {
"babel-core": "^6.7.6",
"babel-eslint": "^8.0.1",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"chai": "^4.1.2",
"copy-webpack-plugin": "^1.1.1",
"css-loader": "^0.23.1",
"eslint": "^2.11.1",
"extract-text-webpack-plugin": "^2.0.0-rc.2",
"istanbul-instrumenter-loader": "^3.0.0",
"jsdom": "^11.3.0",
"mocha": "^3.5.3",
"mocha-webpack": "^1.0.0-rc.1",
"nyc": "^11.2.1",
"style-loader": "^0.13.1",
"stylus": "^0.54.5",
"underscore-template-loader": "^0.7.2",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.2.1",
"webpack-merge": "^2.6.1",
"webpack-node-externals": "^1.6.0"
}
}