-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 3.24 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
80
81
82
83
84
85
86
87
88
89
90
{
"name": "crypto-demo",
"version": "1.0.0",
"description": "",
"main": "web-server/server.js",
"engines": {
"node": "9.5.0",
"npm": "5.8.0"
},
"scripts": {
"clean": "tslint -p . --fix --force",
"postinstall": "libsodium-type-generator -o client/app/services/libsodium.d.ts",
"test:unit": "ng test",
"test:e2e": "ng e2e",
"test:all": "npm run test:unit -- --single-run && npm run test:e2e -- --single-run",
"start": "npm run start:dev",
"start:dev": "ng server",
"start:prod": "node server.js",
"start:build": "ng build --aot -prod --progress --sourcemaps",
"start:mock-prod": "npm run heroku-postbuild && npm run start:prod",
"heroku-postbuild": "npm run start:build && npm run storybook:build",
"storybook": "npm run storybook:run",
"storybook:prebuild": "cp client/index.html storybook/preview-head.html",
"storybook:run": "npm run storybook:prebuild && start-storybook -c storybook -p 9001",
"storybook:build": "npm run storybook:prebuild && build-storybook -c storybook -o storybook-dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/project-callisto/crypto-demo.git"
},
"author": "https://github.com/project-callisto",
"bugs": {
"url": "https://github.com/project-callisto/crypto-demo/issues"
},
"homepage": "https://cryptography.projectcallisto.org/#",
"dependencies": {
"@angular/cli": "^1.7.3",
"@angular/common": "^5.2.9",
"@angular/compiler": "^5.2.9",
"@angular/compiler-cli": "^5.2.9",
"@angular/core": "^5.2.9",
"@angular/forms": "^5.2.9",
"@angular/platform-browser": "^5.2.9",
"@angular/platform-browser-dynamic": "^5.2.9",
"@types/d3": "^5.0.0",
"@types/jasmine": "^2.8.6",
"@types/jquery": "^3.3.1",
"@types/jqueryui": "^1.12.2",
"@types/node": "^9.6.0",
"@types/text-encoding": "0.0.32",
"big-integer": "^1.6.27",
"bigint-typescript-definitions": "^5.5.3-0",
"core-js": "^2.5.3",
"d3": "^4.13.0",
"decimal": "0.0.2",
"eslint": "^4.19.1",
"express": "^4.16.3",
"jquery": "^3.3.1",
"jquery-ui": "^1.12.1",
"libsodium-wrappers": "^0.7.3",
"rxjs": "^5.5.7",
"sjcl": "^1.0.7",
"text-encoding": "^0.6.4",
"typescript": "<2.7",
"webpack": "~3",
"zone.js": "^0.8.20"
},
"devDependencies": {
"@storybook/addon-actions": "^3.3.15",
"@storybook/addons": "^3.3.15",
"@storybook/angular": "^3.4.0-rc.3",
"ajv": "^6.4.0",
"babel-core": "^6.26.0",
"faker": "^4.1.0",
"jasmine": "^3.1.0",
"jasmine-core": "^2.99.1",
"jasmine-expect-count": "^1.1.0",
"jasmine-spec-reporter": "^4.2.1",
"jasmine-ts": "^0.2.1",
"jsdom": "^11.6.2",
"karma": "^2.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^1.1.1",
"karma-spec-reporter": "0.0.32",
"libsodium-type-generator": "^2.0.4",
"protractor": "^5.3.0",
"tslint": "^5.9.1",
"webdriver-manager": "^12.0.6"
}
}