-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.1 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
{
"name": "angular-bootcamp-e2e",
"version": "2.0.0",
"description": "Example app for the Philos.io JavaScript & AngularJS Bootcamp.",
"author": "Pablo Villoslada Puigcerber <[email protected]> (http://pablovilloslada.com/)",
"scripts": {
"start": "node server",
"lint": "jshint client server e2e; true",
"test": "npm run test:unit && npm run test:e2e",
"pretest": "npm run lint",
"test:unit": "karma start",
"test:e2e": "protractor protractor.conf.js",
"pretest:e2e": "webdriver-manager update"
},
"license": "MIT",
"private": true,
"devDependencies": {
"angular-mocks": "^1.5.0",
"http-server": "^0.8.5",
"jasmine-core": "^2.4.1",
"jshint": "^2.9.1",
"karma": "^0.13.19",
"karma-chrome-launcher": "^0.2.2",
"karma-jasmine": "^0.3.6",
"karma-phantomjs-launcher": "^1.0.0",
"phantomjs-prebuilt": "^2.1.4",
"protractor": "^3.0.0"
},
"dependencies": {
"angular": "^1.5.0",
"body-parser": "^1.15.0",
"bootstrap": "^3.3.6",
"express": "^4.13.4",
"lodash": "^4.6.1",
"sequelize": "^3.19.3",
"sqlite3": "^3.1.1"
}
}