-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.13 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
{
"name": "spotify-ads",
"version": "1.0.0",
"description": "Helps to remove Spotify ads on Chrome",
"scripts": {
"dev": "cross-env TS_NODE_PROJECT=\"tsconfig.json\" webpack --config webpack.config.ts --watch",
"build": "cross-env TS_NODE_PROJECT=\"tsconfig.json\" webpack --config webpack.config.ts",
"test": "jest",
"rm:dist": "rimraf dist",
"lint:fix": "eslint 'src/**/*.ts' --fix"
},
"keywords": [
"spotify"
],
"author": "tmhao2005@gmail.com",
"license": "ISC",
"devDependencies": {
"@types/chrome": "^0.0.197",
"@types/copy-webpack-plugin": "^10.1.0",
"@types/jest": "^26.0.23",
"@types/node": "^18.7.18",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.23.1",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.3",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"jest": {
"testEnvironment": "jsdom",
"transform": {
"^.+\\.(t|j)sx?$": "ts-jest"
}
},
"dependencies": {}
}