-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.38 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.38 KB
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
{
"name": "web-words",
"version": "0.3.1",
"private": true,
"scripts": {
"dev": "rollup --environment NODE_ENV:development -c -w",
"dev-build": "rollup --environment NODE_ENV:development -c",
"build": "rollup --environment NODE_ENV:production -c",
"test": "jest",
"lint": "eslint .",
"copy-polyfill": "head -n 1 node_modules/webextension-polyfill/dist/browser-polyfill.min.js > dist/browser-polyfill.min.js",
"wipe": "rm -rf node_modules/ dist/*.js package-lock.json",
"postinstall": "concurrently \"npm:copy-polyfill\" \"npm:dev-build\""
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@rollup/plugin-replace": "^2.3.4",
"@rollup/plugin-strip": "^2.0.0",
"@types/firefox-webext-browser": "^82.0.0",
"@types/jest": "^26.0.15",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"concurrently": "^5.3.0",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.6.3",
"prettier": "^2.1.2",
"rollup": "^2.33.2",
"rollup-plugin-terser": "^7.0.2",
"typescript": "~4.0.5",
"webextension-polyfill": "^0.7.0"
}
}