-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
36 lines (36 loc) · 1.03 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
{
"name": "tabattack",
"private": true,
"license": "AGPL-3.0-only",
"author": "Jannes Meyer <[email protected]>",
"repository": "JannesMeyer/TabAttack",
"type": "module",
"scripts": {
"tsc": "tsc",
"test": "node --enable-source-maps jasmine",
"test-watch": "node --enable-source-maps watch jasmine",
"posttest": "eslint . --ext .ts,.tsx",
"lint": "eslint . --ext .ts,.tsx --format visualstudio || exit 0",
"build-zip": "pwsh build.ps1"
},
"dependencies": {
"ace-builds": "^1.4.12",
"marked": "^1.2.0",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"webextension-polyfill": "^0.6.0"
},
"devDependencies": {
"@types/firefox-webext-browser": "^78.0.1",
"@types/jasmine": "^3.6.0",
"@types/marked": "^1.1.0",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.6.1",
"eslint": "^7.11.0",
"eslint-plugin-react": "^7.21.4",
"jasmine": "^3.6.3",
"typescript": "^4.1.1-rc"
}
}