-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.99 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
{
"name": "gistify",
"version": "1.1.1",
"main": "index.js",
"author": "Harry Nicholls <[email protected]>",
"license": "MIT",
"scripts": {
"copy": "cp -R images manifest.json src/popup.html build/",
"dev": "parcel dev-environment/index.html --out-dir dev-dist/",
"build": "parcel build src/popup.tsx src/background.ts src/scripts/get-code-snippets.ts -d build --no-content-hash --no-source-maps && npm run copy",
"package": "rm -f get-the-gist.zip && zip -r get-the-gist.zip build",
"test": "jest"
},
"dependencies": {
"@aduh95/preact-fontawesome": "^0.1.4",
"@fortawesome/fontawesome-svg-core": "^1.2.22",
"@fortawesome/free-regular-svg-icons": "^5.10.2",
"@fortawesome/free-solid-svg-icons": "^5.10.2",
"@octokit/rest": "^16.28.7",
"@types/isomorphic-fetch": "^0.0.35",
"copy-to-clipboard": "^3.2.0",
"dotenv": "^8.1.0",
"preact": "^10.0.0-rc.1",
"query-string": "^6.8.2",
"uuid": "^3.3.3"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-syntax-async-generators": "^7.2.0",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@types/chrome": "^0.0.91",
"@types/enzyme": "^3.10.3",
"@types/jest": "^24.0.23",
"@types/uuid": "^3.4.6",
"chrome-webstore-upload": "^0.2.2",
"enzyme": "^3.10.0",
"enzyme-adapter-preact-pure": "^2.1.0",
"eslint": "5.7.0",
"eslint-config-prettier": "^6.3.0",
"eslint-config-standard": "^14.1.0",
"eslint-config-standard-preact": "^1.1.6",
"eslint-plugin-jest": "^22.17.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.15.1",
"eslint-plugin-standard": "^4.0.1",
"isomorphic-fetch": "^2.2.1",
"jest": "^24.9.0",
"jsdom": "^15.1.1",
"jsdom-global": "^3.0.2",
"parcel-bundler": "^1.12.3",
"prettier": "^1.18.2",
"ts-jest": "^24.1.0",
"typescript": "^3.7.2"
}
}