-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.99 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.99 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
62
63
64
65
66
67
68
69
70
71
{
"author": "Mariusz Michalski",
"name": "ng-devstack",
"version": "1.0.4",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mariuszm/ng-devstack.git"
},
"engines": {
"npm": ">=3.0.0"
},
"scripts": {
"clean": "rm -rf dist",
"dev": "webpack-dev-server --progress --hot --inline --config ./webpack.dev.config.js",
"build": "webpack -p --progress --hide-modules --config ./webpack.prod.config.js",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watchAll",
"lint": "eslint ./src"
},
"jest": {
"coveragePathIgnorePatterns": [
"./node_modules",
"./src/index.js"
]
},
"devDependencies": {
"autoprefixer": "7.1.2",
"babel-core": "6.25.0",
"babel-jest": "20.0.3",
"babel-loader": "7.1.1",
"babel-plugin-angularjs-annotate": "0.7.0",
"babel-plugin-import-noop": "1.0.1",
"babel-plugin-transform-es2015-modules-commonjs": "6.24.1",
"babel-preset-env": "1.6.0",
"clean-webpack-plugin": "0.1.16",
"css-loader": "0.28.4",
"eslint": "4.2.0",
"eslint-config-angular": "0.5.0",
"eslint-loader": "1.9.0",
"eslint-plugin-angular": "3.0.0",
"extract-text-webpack-plugin": "3.0.0-rc.1",
"file-loader": "0.11.2",
"friendly-errors-webpack-plugin": "1.6.1",
"html-loader": "0.4.5",
"html-webpack-plugin": "2.29.0",
"imports-loader": "0.7.1",
"jasmine-core": "2.6.4",
"jest": "20.0.4",
"ngtemplate-loader": "2.0.1",
"node-sass": "4.5.3",
"postcss-loader": "2.0.6",
"resolve-url-loader": "2.1.0",
"sass-loader": "6.0.6",
"sass-resources-loader": "1.2.1",
"style-loader": "0.18.2",
"url-loader": "0.5.9",
"webpack": "3.1.0",
"webpack-dev-server": "2.5.1",
"webpack-merge": "4.1.0"
},
"dependencies": {
"@uirouter/angularjs": "1.0.5",
"angular": "1.6.5",
"angular-animate": "1.6.5",
"angular-aria": "1.6.5",
"angular-material": "1.1.4",
"angular-mocks": "1.6.5"
}
}