forked from PolymerLabs/arcs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.82 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
106
107
108
109
110
111
112
113
114
115
116
117
{
"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 devtools && npm install",
"test-extension": "mocha-chrome extension/tests/index.test.html",
"test:licenses": "jsgl --local . && npm --prefix devtools run test:licenses && npm --prefix cloud run test:licenses",
"build:rollup": "rollup -c --sourcemap",
"watch:rollup": "rollup -c --sourcemap --watch",
"build:typedoc": "typedoc --ignoreCompilerErrors --mode file --downLevelIteration -out dist/apidocs",
"cloud": "npm install && cross-env tools/sigh && npm run build:rollup && npm --prefix cloud install && npm --prefix cloud run test",
"cloud:start": "npm --prefix cloud start",
"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",
"watch:webpack": "webpack --watch",
"watch": "concurrently npm:watch:*"
},
"devDependencies": {
"@types/chai": "4.2.4",
"@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/pouchdb": "6.4.0",
"@types/pouchdb-core": "7.0.4",
"@types/ws": "6.0.3",
"@typescript-eslint/eslint-plugin": "2.6.1",
"@typescript-eslint/parser": "2.6.1",
"@wdio/cli": "5.16.0",
"@wdio/local-runner": "5.16.0",
"@wdio/mocha-framework": "5.16.0",
"@wdio/spec-reporter": "5.15.2",
"@wdio/sync": "5.16.0",
"c8": "4.1.5",
"chai": "4.2.0",
"chromedriver": "78.0.0",
"concurrently": "4.1.2",
"cross-env": "5.2.1",
"eslint": "6.6.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",
"js-green-licenses": "1.1.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",
"rollup": "1.26.3",
"rollup-plugin-commonjs": "9.3.4",
"rollup-plugin-ignore": "1.0.5",
"rollup-plugin-multi-entry": "2.1.0",
"rollup-plugin-node-resolve": "4.2.4",
"rollup-plugin-typescript2": "0.21.2",
"sloc": "0.2.1",
"ts-pegjs": "0.2.6",
"tslint": "5.20.1",
"type-coverage": "2.3.0",
"typedoc": "0.15.0",
"wdio-chromedriver-service": "5.0.2",
"webdriverio": "5.16.0",
"webpack": "4.41.2",
"webpack-cli": "3.3.10"
},
"dependencies": {
"@bazel/buildifier": "0.29.0",
"@tensorflow/tfjs": "1.3.1",
"assert": "1.5.0",
"circular-dependency-plugin": "5.2.0",
"esm": "3.2.25",
"firebase": "6.6.2",
"idb": "2.1.3",
"jsrsasign": "8.0.12",
"jsrsasign-util": "1.0.0",
"jszip": "3.2.2",
"node-fetch": "2.6.0",
"pouchdb": "7.1.1",
"pouchdb-adapter-memory": "7.1.1",
"pouchdb-debug": "7.1.1",
"source-map-support": "0.5.16",
"sourcemapped-stacktrace": "1.1.11",
"typescript": "3.7.2",
"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"
}
}