-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.98 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.98 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
{
"name": "angular-es6-mobx-flux-example",
"version": "2.0.0",
"description": "A sample app featuring Flux and Angular es6 with mobx",
"main": "index.js",
"repository": "https://github.com/theodesp/angular-es6-mobx-flux-example",
"author": "Theo Despoudis",
"license": "MIT",
"scripts": {
"build:dev": "rimraf dist && cross-env NODE_ENV=development webpack --config webpack.dev.config.js --bail --progress --profile --verbose --colors --display-error-details",
"start": "cross-env NODE_ENV=development node server.js",
"postinstall": "npm run-script build:dev",
"lint": "eslint .",
"clean": "rimraf dist"
},
"dependencies": {
"angular": "^1.6.4",
"angular-loading-bar": "^0.9.0",
"@uirouter/angularjs": "^1.0.3",
"flux": "^3.1.2",
"lodash": "^4.17.4",
"mobx": "^3.1.11",
"normalize.css": "^7.0.0",
"wingcss": "^1.0.0-beta"
},
"devDependencies": {
"angular-mocks": "^1.6.4",
"babel-core": "^6.25.0",
"babel-loader": "^7.0.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"cross-env": "^3.1.4",
"css-loader": "^0.28.4",
"env-cmd": "^4.0.0",
"eslint": "^3.12.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-config-airbnb-base": "^11.0.0",
"eslint-plugin-import": "^2.2.0",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^2.1.2",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.28.0",
"jasmine-core": "^2.5.2",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-jasmine": "^1.1.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-webpack": "^1.8.1",
"less": "^2.7.2",
"less-loader": "^4.0.4",
"ng-annotate-loader": "^0.6.1",
"raw-loader": "^0.5.1",
"rimraf": "^2.5.4",
"style-loader": "^0.13.1",
"webpack": "^2.6.1",
"webpack-dev-middleware": "^1.10.2",
"webpack-dev-server": "^2.4.5",
"webpack-hot-middleware": "^2.18.0"
}
}