-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.26 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
{
"name": "your-app",
"description": "Description",
"author": "Your Name",
"version": "0.0.1",
"repository": {
"type": "git",
"url": ""
},
"scripts": {
"start": "webpack-dev-server",
"prebuild": "rm -rf ./public/",
"build": "npm run lint && webpack -p",
"lint": "eslint app",
"test": "echo test"
},
"dependencies": {
"backbone": "~1.3.3",
"backbone.marionette": "~3.0.0",
"font-awesome": "^4.7.0",
"jquery": "~1.12.2",
"normalize-css": "^2.3.1",
"underscore": "^1.8.3"
},
"devDependencies": {
"babel-core": "^6.7.6",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"copy-webpack-plugin": "^1.1.1",
"css-loader": "^0.23.1",
"eslint": "^2.11.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.11.1",
"jasmine-core": "^2.5.2",
"karma": "^1.6.0",
"karma-chrome-launcher": "^2.0.0",
"karma-firefox-launcher": "^1.0.1",
"karma-jasmine": "^1.1.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-webpack": "^2.0.3",
"style-loader": "^0.13.1",
"stylus": "^0.54.5",
"underscore-template-loader": "^0.7.2",
"url-loader": "^0.5.8",
"webpack": "^1.12.15",
"webpack-dev-server": "^1.16.2",
"webpack-merge": "^0.15.0"
}
}