-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.2 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
{
"name": "big-todo-client",
"version": "1.0.0",
"description": "Client-side app for BigToDo",
"main": "main.js",
"directories": {
"test": "test"
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "karma start",
"test:watch": "karma start",
"start": "webpack-dev-server --inline",
"build": "webpack --define process.env.APIURL='\"/api\"'",
"update-webdriver": "webdriver-manager update",
"e2e": "protractor",
"e2e-explore": "protractor --elementExplorer"
},
"repository": {
"type": "git",
"url": "git+https://github.com/401-Final/401ToDo.git"
},
"author": "Greg Katchmar <[email protected]> (www.gkatchmar.com)",
"license": "ISC",
"bugs": {
"url": "https://github.com/401-Final/401ToDo/issues"
},
"homepage": "https://github.com/401-Final/401ToDo#readme",
"devDependencies": {
"angular-mocks": "^1.5.9",
"angular-ui-router-default": "0.0.6",
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-loader": "^6.2.8",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
"chai": "^3.5.0",
"css-loader": "^0.26.0",
"eslint": "^3.12.0",
"eslint-loader": "^1.6.1",
"extract-text-webpack-plugin": "^1.0.1",
"html-loader": "^0.4.4",
"html-webpack-plugin": "^2.24.1",
"jasmine": "^2.5.3",
"jasmine-spec-reporter": "^2.7.0",
"karma": "^1.2.0",
"karma-babel-preprocessor": "^6.0.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^1.0.1",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.1.1",
"karma-safari-launcher": "^1.0.0",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "^1.8.0",
"mocha": "^3.0.2",
"node-sass": "^4.0.0",
"protractor": "^4.0.14",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"webpack": "^1.13.3",
"webpack-dev-server": "^1.16.2"
},
"dependencies": {
"angular": "^1.5.9",
"angular-animate": "^1.6.0",
"angular-aria": "^1.6.1",
"angular-material": "^1.1.1",
"angular-resource": "^1.6.0",
"angular-ui-router": "^1.0.0-beta.3",
"camelcase": "^4.0.0",
"ng-dialog": "^0.6.4"
},
"babel": {
"presets": [
"es2015"
]
}
}