-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1010 Bytes
/
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
{
"name": "angularjs-typescript-seed",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "[email protected]:angularjs-de/bookmonkey-app-e2e.git"
},
"main": "app/app.ts",
"scripts": {
"start": "bookmonkey-api & live-server --port=3000",
"tsc": "tsc",
"typings": "typings install",
"postinstall": "typings install;./node_modules/protractor/bin/webdriver-manager update",
"pretest": "tsc",
"test": "protractor tmp/protractor.conf.js"
},
"author": "Robin Böhm <[email protected]>",
"dependencies": {
"angular": "^1.5.0",
"angular-messages": "^1.5.0",
"angular-route": "^1.5.0",
"bookmonkey-api": "^1.2.0",
"jquery": "^2.2.0",
"semantic-ui-css": "^2.1.8"
},
"devDependencies": {
"jasmine-core": "^2.3.4",
"jasmine-spec-reporter": "^2.4.0",
"live-server": "^0.9.1",
"protractor": "^4.0.3",
"typescript": "^1.8.10",
"typings": "^1.3.2"
},
"standard": {
"globals": [
"angular"
]
}
}