-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
104 lines (104 loc) · 3.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
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
{
"name": "arcs",
"version": "0.0.0",
"private": true,
"config": {
"port": "8786"
},
"browser": "dist/webmain.js",
"module": "dist/webmain.js",
"main": "dist/index.es.js",
"scripts": {
"prepare": "cross-env tools/sigh check && cd concrete-storage && npm i",
"build:tsc": "tsc",
"watch:tsc": "tsc -w",
"install:vscodeclient": "npm install && cross-env tools/sigh languageServer --install && cd src && cd tools && cd vscode-language-client && npm run installDevExtension",
"build:webpack": "webpack",
"build:webpack-tools": "webpack --config ./src/tools/webpack.config.js",
"build:webpack-languageserver": "webpack --config ./src/tools/language-server/webpack.config.js",
"build:storage": "cd concrete-storage && webpack",
"build:shells": "cd shells/lib/arcs-ui && tsc && cd ../../tests/arcs && tsc && cd ../../lib/worker && webpack",
"watch:webpack": "webpack --watch",
"watch": "concurrently npm:watch:*"
},
"devDependencies": {
"@types/chai": "4.2.4",
"@types/diff": "4.0.2",
"@types/express": "4.17.1",
"@types/jszip": "3.1.6",
"@types/minimist": "1.2.0",
"@types/mocha": "5.2.7",
"@types/morgan": "1.7.37",
"@types/node": "10.17.3",
"@types/ws": "6.0.3",
"@typescript-eslint/eslint-plugin": "4.2.0",
"@typescript-eslint/parser": "4.2.0",
"@wdio/cli": "6.5.2",
"@wdio/local-runner": "6.5.2",
"@wdio/mocha-framework": "6.5.0",
"@wdio/spec-reporter": "6.4.7",
"@wdio/sync": "6.5.0",
"bufferutil": "4.0.1",
"c8": "4.1.5",
"chai": "4.2.0",
"chromedriver": "86.0.0",
"concurrently": "4.1.2",
"cross-env": "5.2.1",
"diff": "4.0.1",
"eslint": "7.9.0",
"eslint-config-google": "0.14.0",
"eslint-plugin-header": "3.0.0",
"eslint-plugin-import": "2.18.2",
"express": "4.17.1",
"glob": "7.1.5",
"grammkit": "0.7.0",
"minimist": "1.2.0",
"mocha": "5.2.0",
"mocha-chrome": "2.2.0",
"morgan": "1.9.1",
"node-webcrypto-ossl": "1.0.48",
"npm-run-all": "4.1.5",
"pegjs": "0.10.0",
"protobufjs": "6.8.8",
"sloc": "0.2.1",
"ts-pegjs": "0.2.6",
"tslint": "5.20.1",
"type-coverage": "2.3.0",
"typedoc": "0.15.0",
"utf-8-validate": "5.0.2",
"wdio-chromedriver-service": "6.0.4",
"webdriverio": "5.16.0",
"webpack": "4.41.2",
"webpack-cli": "3.3.10"
},
"dependencies": {
"@bazel/buildifier": "0.29.0",
"assert": "1.5.0",
"circular-dependency-plugin": "5.2.0",
"esm": "3.2.25",
"idb": "2.1.3",
"jsrsasign": "8.0.12",
"jsrsasign-util": "1.0.0",
"jszip": "3.2.2",
"madge": "3.6.0",
"node-fetch": "2.6.0",
"source-map-support": "0.5.16",
"sourcemapped-stacktrace": "1.1.11",
"typescript": "4.0.3",
"ws": "6.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/PolymerLabs/arcs.git"
},
"author": "The Polymer Project Authors",
"license": "BSD-3-Clause",
"homepage": "https://github.com/PolymerLabs/arcs",
"bugs": {
"url": "https://github.com/PolymerLabs/arcs/issues"
},
"engines": {
"node": ">= 10.13.0",
"npm": ">= 6.9.0"
}
}