-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.49 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
{
"name": "@rossipedia/thumb-tack",
"description": "Chrome Extension for Automatically Pinning Tabs",
"version": "0.0.6",
"license": "MIT",
"engines": {
"node": ">=10"
},
"scripts": {
"dev": "nodemon -w src/manifest.json -w webpack.config.js -x \"webpack --mode development --watch\"",
"build": "rimraf dist && cross-env NODE_ENV=production webpack --mode production",
"clean": "git clean -xdf -e /.env",
"upload": "env-cmd webstore upload --source dist",
"version": "node patch-manifest.js && git add src/manifest.json"
},
"devDependencies": {
"@babel/preset-modules": "^0.1.3",
"@types/chrome": "^0.0.100",
"@types/react": "^16.9.23",
"@types/react-dom": "^16.9.5",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.6",
"babel-plugin-styled-components": "^1.10.7",
"chrome-webstore-upload": "^0.2.2",
"chrome-webstore-upload-cli": "^1.2.0",
"copy-webpack-plugin": "^5.1.1",
"cross-env": "^7.0.2",
"env-cmd": "^10.1.0",
"html-webpack-plugin": "^3.2.0",
"html-webpack-tags-plugin": "^2.0.17",
"immer": "^6.0.1",
"nodemon": "^2.0.2",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"rimraf": "^3.0.2",
"semver": "^7.1.3",
"styled-components": "^5.0.1",
"ts-loader": "^6.2.1",
"typescript": "^3.8.3",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"webpack-serve": "^3.2.0"
},
"dependencies": {
"@babel/core": "7.8.7",
"@babel/runtime": "7.8.7",
"react-is": "16.13.0"
}
}