forked from threema-ch/threema-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 3.87 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "threema-web",
"version": "2.1.7",
"description": "Threema Webclient",
"scripts": {
"build": "npm run build:js && npm run build:css",
"build:js": "webpack --config webpack.prod.js",
"build:css": "node-sass -o public/css/ --output-style compressed src/sass/",
"build:css:watch": "node-sass -w -r --source-map true --source-map-embed true -o public/css/ --output-style compressed src/sass/",
"build:tests": "echo -e 'NOTE: Use either \"npm build:unittests\" or \"npm build:uitests\"\n' && exit 1",
"build:unittests": "webpack --config webpack.tests.js",
"build:uitests": "npm run build:css && webpack --config webpack.tests.js",
"dist": "npm run build && echo \"\" && node dist/build-package.js",
"serve:live": "echo 'NOTE: serve:live command has been renamed to devserver'",
"devserver": "npm run build:css && concurrently --kill-others --names \"css,server\" -p name \"npm run build:css:watch\" \"npx webpack-dev-server --config webpack.dev.js\"",
"testserver": "npx webpack-dev-server --config webpack.tests.js",
"test": "echo -e 'NOTE: Use either \"npm run test:unit\" or \"npm run test:ui\"\n' && exit 1",
"test:unit": "npm run build:unittests && karma start --single-run --log-level=debug --colors",
"test:ui": "npm run build:uitests && bash tests/ui/run.sh",
"lint": "npm run lint:ts && npm run lint:sass",
"lint:ts": "tslint -c tslint.json --project tsconfig.json --exclude \"**/src/config.ts\"",
"lint:sass": "sass-lint -c .sass-lint.yml -v -q",
"lint:sass:fix": "sass-lint-auto-fix -c .sass-lint.yml",
"clean": "rm -rf js/ build/ dist/app*"
},
"keywords": [
"threema",
"saltyrtc",
"webrtc",
"messenger"
],
"author": "Threema GmbH",
"license": "AGPL-3.0+",
"private": true,
"homepage": "https://threema.ch/",
"dependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-transform-runtime": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/runtime": "^7.4.3",
"@saltyrtc/client": "^0.13.2",
"@saltyrtc/task-relayed-data": "^0.3.1",
"@saltyrtc/task-webrtc": "^0.13.0",
"@types/angular": "^1.6.53",
"@types/angular-material": "^1.1.62",
"@types/angular-sanitize": "^1.3.7",
"@types/angular-translate": "^2.16.0",
"@types/file-saver": "^2.0.0",
"@types/jquery": "^3.3.29",
"@types/msgpack-lite": "^0.1.6",
"@types/webrtc": "0.0.24",
"@uirouter/angularjs": "^1.0.20",
"angular": "^1.7.5",
"angular-animate": "^1.7.5",
"angular-aria": "^1.7.5",
"angular-material": "=1.1.11",
"angular-messages": "^1.7.5",
"angular-qrcode": "~7.2",
"angular-route": "^1.7.5",
"angular-sanitize": "^1.7.5",
"angular-translate": "~2.18",
"angularjs-scroll-glue": "~2.1.0",
"autolinker": "~2.2.1",
"babel-loader": "^8.0.5",
"core-js": "^3.0.1",
"croppie": "^2.6.3",
"file-saver": "2.0.0",
"messageformat": "^2.0.5",
"msgpack-lite": "~0.1.26",
"node-sass": "^4.11.0",
"sdp": "~2.9.0",
"ts-events": "^3.1.5",
"ts-loader": "^5.3.3",
"tsify": "^4.0.1",
"tweetnacl": "^1.0.0",
"twemoji": "^11.2.0",
"typescript": "^3.4.3",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.0",
"webpack-merge": "^4.2.1",
"webrtc-adapter": "^7.1.1"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/jasmine": "^3.3.5",
"@types/selenium-webdriver": "^3.0.14",
"angular-mocks": "^1.7.5",
"chai": "^4.2.0",
"concurrently": "~4.1.0",
"geckodriver": "^1.14.1",
"jasmine": "^3.3.1",
"jasmine-core": "^3.3.0",
"karma": "^3.1.4",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.1.0",
"karma-jasmine": "^2.0.1",
"sass-lint": "^1.12.1",
"sass-lint-auto-fix": "^0.15.1",
"selenium-webdriver": "^4.0.0-alpha.1",
"term-color": "^1.0.1",
"ts-node": "^7.0.1",
"tslint": "~5.12",
"webpack-dev-server": "^3.3.1"
}
}