-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.89 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
{
"name": "ng-es6-exp",
"version": "1.0.0",
"description": "Reference project: Angular, RxJS, Babel, Webpack, Jest, ESDoc, ESLint...",
"main": "index.js",
"scripts": {
"start": "npm run lint && npm run test && npm run build && npm run server",
"lint": "./node_modules/.bin/eslint ./src/ || true",
"test": "jest",
"docs": "esdoc -c ./esdoc.json",
"build": "./node_modules/.bin/webpack -p --progress --colors",
"deploy": "NODE_ENV=production && npm run build",
"server": "webpack-dev-server --inline --content-base dist/ --history-api-fallback",
"json": "json-server --watch ./data/db.json"
},
"jest": {
"modulePathIgnorePatterns": [
"/esdoc/"
]
},
"author": "areologist",
"license": "ISC",
"dependencies": {
"angular": "^1.5.3",
"angular-animate": "^1.5.3",
"angular-nvd3": "^1.0.5",
"angular-ui-bootstrap": "^1.2.5",
"angular-ui-router": "^1.0.0-alpha.1",
"bootstrap": "^3.3.6",
"d3": "^3.5.16",
"nvd3": "^1.8.2",
"rxjs-es": "^5.0.0-beta.4"
},
"devDependencies": {
"angular-mocks": "^1.5.3",
"babel-core": "^6.7.4",
"babel-eslint": "^6.0.2",
"babel-jest": "^10.0.1",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-1": "^6.5.0",
"browser-sync": "^2.11.2",
"css-loader": "^0.23.1",
"esdoc": "^0.4.6",
"eslint": "^2.6.0",
"eslint-config-airbnb": "^6.2.0",
"eslint-plugin-babel": "^3.1.0",
"eslint-plugin-react": "^4.2.3",
"file-loader": "^0.8.5",
"html-webpack-plugin": "^2.15.0",
"jasmine": "^2.4.1",
"jest-cli": "^0.10.0",
"json-server": "^0.8.9",
"less": "^2.6.1",
"less-loader": "^2.2.3",
"raw-loader": "^0.5.1",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1",
"webpack-stream": "^3.1.0"
}
}