-
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.77 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.77 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": "inventory-tracker-frontend",
"version": "1.0.0",
"description": "",
"main": "karma.conf.js",
"directories": {
"test": "test"
},
"keywords": [],
"author": "",
"license": "ISC",
"scripts": {
"lint": "eslint '**/*.js'",
"build": "./node_modules/webpack/bin/webpack.js",
"build-watch": "./node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot",
"test": "./node_modules/karma/bin/karma start --single-run",
"test-watch": "./node_modules/karma/bin/karma start",
"heroku-postbuild": "webpack -p --progress",
"engines": {"node": "4.4.7"}
},
"dependencies": {
"angular": "^1.6.1",
"angular-animate": "^1.6.1",
"angular-route": "^1.6.1",
"angular-touch": "^1.6.1",
"angular-ui-bootstrap": "^2.5.0",
"angular-ui-router": "^0.4.2",
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.22.0",
"bootstrap-sass": "^3.3.7",
"camelcase": "^3.0.0",
"clean-webpack-plugin": "^0.1.15",
"css-loader": "^0.26.1",
"dotenv": "^4.0.0",
"express": "^4.14.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"html-loader": "^0.4.4",
"html-webpack-plugin": "^2.26.0",
"ng-file-upload": "^12.2.13",
"node-sass": "^4.3.0",
"pascalcase": "^0.1.1",
"resolve-url-loader": "^1.6.1",
"sass-loader": "^4.1.1",
"style-loader": "^0.13.1",
"ui-router": "^1.0.0-alpha.3",
"url-loader": "^0.5.7",
"webpack": "^1.14.0"
},
"devDependencies": {
"angular-mocks": "^1.6.2",
"jasmine-core": "^2.5.2",
"karma-jasmine": "^1.1.0",
"karma": "^1.4.1",
"karma-mocha-reporter": "^2.2.2",
"karma-phantomjs-launcher": "^1.0.2",
"karma-webpack": "^2.0.2",
"webpack-dev-server": "^1.16.2"
}
}