-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 2.08 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
{
"scripts": {
"build": "run-s build:*",
"build:clean": "trash .website/* .extension/*",
"build:website": "parcel build website/index.html --dist-dir .website --no-source-maps",
"build:extension": "parcel build website/index.html --dist-dir .extension --no-optimize",
"release": "run-s build release:* || true",
"disabled_release:firefox": "cd .extension; web-ext-submit",
"disabled_release:chrome-edit": "grep -v homepage extension/manifest.json > m.temp; mv m.temp extension/manifest.json",
"release:chrome": "cd .extension; chrome-webstore-upload",
"dev": "parcel -p 1324 --dist-dir .dist website/index.html",
"test": "run-s fmt lint check test:unit",
"test:unit": "jest",
"lint": "tslint --project tsconfig.json website/**/*.ts --fix",
"check": "tsc -noEmit",
"fmt": "prettier --list-different --write --ignore-path .gitignore \"**/*.{js,ts,tsx,md,yml,json}\""
},
"dependencies": {
"csstips": "1.2.0",
"okwolo": "3.4.5",
"typestyle": "2.3.0"
},
"devDependencies": {
"@types/jest": "27.4.1",
"babel-core": "6.26.3",
"babel-plugin-transform-react-jsx": "6.24.1",
"babel-preset-env": "1.7.0",
"chrome-webstore-upload-cli": "3.3.1",
"jest": "27.5.1",
"npm-run-all": "4.1.5",
"parcel": "2.4.1",
"parcel-reporter-bundle-manifest": "1.0.0",
"parcel-reporter-static-files-copy": "1.3.4",
"prettier": "2.6.2",
"trash-cli": "5.0.0",
"ts-jest": "27.1.4",
"tslint": "6.1.3",
"tslint-config-airbnb": "5.11.2",
"typescript": "4.6.3",
"web-ext-submit": "6.8.0",
"web-ext-types": "3.2.1"
},
"prettier": {
"tabWidth": 4,
"trailingComma": "all",
"bracketSpacing": false,
"arrowParens": "always"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"staticFiles": {
"staticPath": "extension"
},
"browserslist": "> 0.5%, last 2 versions, not dead"
}