-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.54 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
{
"name": "google-docs-comment-nav",
"version": "1.0.0",
"description": "Tool for managing comments and suggestions in Google Docs",
"main": "index.js",
"scripts": {
"test": "bash scripts/unit-test.sh",
"coverage": "COVERAGE=true bash scripts/unit-test.sh",
"format": "npx [email protected] . --write",
"build": "webpack",
"e2e": "bash scripts/e2e-test.sh",
"e2e-inspect": "bash scripts/e2e-server-manual.sh",
"to-staging": "scripts/to-staging.js --gistfile=\"static/js_dist/bundle.js\""
},
"author": "[email protected]",
"private": true,
"module": "src/index.ts",
"devDependencies": {
"@babel/core": "7.9.6",
"@babel/preset-env": "7.9.6",
"@babel/preset-typescript": "7.9.0",
"@octokit/rest": "18.0.3",
"@types/common-tags": "1.8.0",
"@types/expect-puppeteer": "4.4.3",
"@types/express": "4.17.6",
"@types/jest": "25.2.1",
"@types/jest-environment-puppeteer": "4.3.1",
"@types/js-yaml": "3.12.4",
"@types/node": "13.13.4",
"@types/puppeteer": "3.0.0",
"@types/terser-webpack-plugin": "3.0.0",
"clean-webpack-plugin": "3.0.0",
"common-tags": "1.8.0",
"expect-puppeteer": "4.4.0",
"jest": "26.0.1",
"jest-puppeteer": "4.4.0",
"js-yaml": "3.14.0",
"prettier": "2.0.5",
"puppeteer": "3.3.0",
"terser-webpack-plugin": "3.0.6",
"ts-loader": "7.0.5",
"typescript": "3.9.3",
"webpack": "4.43.0",
"webpack-cli": "3.3.11",
"yargs": "15.4.1"
},
"dependencies": {
"express": "4.17.1",
"regexpp": "3.1.0"
}
}