-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 892 Bytes
/
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
{
"name": "in-your-pocket",
"version": "0.1.0",
"description": "",
"scripts": {
"watch": "webpack --config webpack/webpack.dev.js --watch",
"build": "webpack --config webpack/webpack.prod.js",
"clean": "rimraf dist",
"build:clean": "npm run clean && npm run build",
"test": "npx jest",
"pack": "npm run build:clean && bestzip dist.zip dist/*"
},
"author": "",
"repository": {
"type": "git",
"url": "https://github.com/exzish/in-your-pocket"
},
"dependencies": {
"jquery": "^3.5.1"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/chrome": "0.0.100",
"@types/jquery": "^3.5.1",
"bestzip": "^2.1.7",
"copy-webpack-plugin": "^6.1.0",
"rimraf": "^3.0.2 ",
"ts-loader": "^6.2.1",
"typescript": "~3.8.3 ",
"webpack": "^4.44.1",
"webpack-cli": "~3.3.11",
"webpack-merge": "~4.2.2"
}
}