-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
96 lines (96 loc) · 3.17 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
{
"name": "github-trending-chrome-extension",
"targets": {
"app": {
"context": "browser",
"distDir": "dist/",
"source": "src/index.html"
},
"service_worker": {
"context": "service-worker",
"distDir": "dist/service_worker/",
"source": "src/service_worker/index.js"
}
},
"browserslist": "> 0.5%, last 2 versions, not dead",
"version": "2.2.2",
"author": "Renan GEHAN <[email protected]>",
"license": "MIT",
"dependencies": {
"@babel/polyfill": "^7.8.3",
"@types/object-hash": "^1.3.0",
"babel-polyfill": "^6.26.0",
"classnames": "^2.2.6",
"clipboard": "^2.0.4",
"contrast": "^1.0.1",
"es6-error": "^4.1.1",
"human-format": "^0.10.1",
"immer": "^5.0.0",
"lodash": "^4.17.15",
"mobx": "^5.15.1",
"mobx-persist": "^0.4.1",
"mobx-react": "^6.1.4",
"moment": "^2.22.2",
"object-hash": "^2.0.1",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.8.0",
"react-sortable-hoc": "^1.10.1",
"recompose": "^0.30.0",
"styled-components": "^4.1.3",
"timeago.js": "^4.0.1",
"uuid": "^3.3.3"
},
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/plugin-proposal-decorators": "^7.6.0",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@parcel/config-default": "^2.10.0",
"@parcel/transformer-sass": "2.10.0",
"@parcel/transformer-typescript-tsc": "^2.10.0",
"@types/chrome": "^0.0.239",
"@types/classnames": "^2.2.9",
"@types/clipboard": "^2.0.1",
"@types/jest": "^24.0.22",
"@types/lodash": "^4.14.146",
"@types/node": "^20.3.3",
"@types/react-dom": "^16.9.4",
"@types/react-sortable-hoc": "^0.7.1",
"@types/recompose": "^0.30.7",
"@types/styled-components": "^4.1.20",
"@types/uuid": "^3.4.4",
"@typescript-eslint/eslint-plugin": "^2.8.0",
"@typescript-eslint/parser": "^2.19.2",
"autoprefixer": "^10.4.16",
"cypress": "12.16.0",
"eslint": "^6.7.2",
"eslint-plugin-react": "^7.18.3",
"jest": "^24.5.0",
"jest-localstorage-mock": "^2.4.0",
"parcel": "^2.0.0",
"prettier": "^1.19.1",
"process": "^0.11.10",
"puppeteer": "^2.0.0",
"rimraf": "^3.0.2",
"sass": "^1.24.2",
"tailwindcss": "2",
"ts-jest": "^24.3.0",
"typescript": "^3.8.3"
},
"scripts": {
"clean": "rimraf dist/ .parcel-cache",
"start": "parcel serve --no-hmr --no-autoinstall src/index.html",
"copyManifest": "cp manifest.json dist/manifest.json",
"copyIcons": "cp -r icons/ dist/icons/",
"syncManifestVersion": "version=$(jq -r .version package.json) && sed -i '' \"s/<version>/$version/\" dist/manifest.json && echo \"Updated manifest with version: $version\"",
"build:unpacked": "yarn clean && parcel build && yarn copyManifest && yarn copyIcons && yarn syncManifestVersion",
"compress": "cd dist/ && zip -rq ../octolenses-$(jq -r .version ../package.json).zip *",
"build": "yarn build:unpacked && yarn compress",
"release": "./scripts/release",
"screenshots": "./scripts/screenshots",
"test": "jest",
"e2e": "cypress open",
"lint": "eslint --ext ts,tsx src/"
}
}