This repository has been archived by the owner on Aug 1, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.78 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "company_poc",
"version": "1.0.0",
"description": "Company profile POC using Angular 1.5.x, redux and rxjs",
"main": "app.js",
"dependencies": {
"angular": "1.5.8",
"angular-ui-router": "^0.3.0",
"ng-redux": "^3.4.0-beta.1",
"redux-ui-router": "^0.6.0",
"redux": "^3.6.0",
"webpack": "^1.13.2",
"@reactivex/rxjs": "5.0.0-beta.12"
},
"devDependencies": {
"angular-mocks": "^1.5.8",
"babel-core": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-stage-1": "^6.13.0",
"chai": "^3.5.0",
"concurrently": "^2.2.0",
"css-loader": "^0.25.0",
"eslint": "^3.5.0",
"eslint-config-angular": "^0.5.0",
"eslint-plugin-angular": "^1.3.1",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.22.0",
"jasmine-core": "^2.5.2",
"karma": "^1.3.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-jasmine": "^1.0.2",
"karma-mocha": "^1.1.1",
"karma-mocha-reporter": "^2.1.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "^1.8.0",
"mocha": "^3.0.2",
"node-sass": "^3.9.3",
"phantomjs-prebuilt": "^2.1.12",
"raw-loader": "^0.5.1",
"redux-logger": "^2.6.1",
"rimraf": "^2.5.4",
"sass-loader": "^4.0.2",
"script-loader": "^0.7.0",
"sinon": "^1.17.6",
"source-map-loader": "^0.1.5",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack-dev-server": "^1.15.1",
"webpack-md5-hash": "0.0.5",
"webpack-merge": "^0.14.1"
},
"scripts": {
"analyze": "webpack --json | webpack-bundle-size-analyzer",
"build": "export NODE_ENV=dev && webpack",
"build:production": "export NODE_ENV=prod && webpack -p",
"clean": "npm cache clean && rimraf -- node_modules doc typings coverage dist",
"client": "npm run client:dev:hmr",
"client:dev": "webpack-dev-server --inline --colors --watch --display-error-details --display-cached --port 3001 --content-base client/public",
"client:dev:hmr": "npm run client:dev -- --hot",
"lint": "eslint client/src/ || true",
"lint:travis": "eslint client/src/",
"server": "json-server --watch server/api/db.json",
"start": "concurrently \"npm run server\" \"npm run client\"",
"test": "karma start",
"test:debug": "karma start karma.conf.js --log-level=debug --single-run=False",
"test:watch": "karma start karma.conf.js --auto-watch=true --single-run=False"
},
"babel": {
"presets": [
"es2015",
"stage-1"
],
"plugins": [
"transform-decorators-legacy"
]
},
"author": "Xavier Lozinguez @ Axial",
"license": "ISC"
}