-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.86 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
{
"name": "ssearch",
"version": "1.0.0",
"description": "search your search history",
"main": "index.js",
"scripts": {
"build": "webpack",
"dev": "webpack-cli serve --mode development --watch",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/geewoo94/ssearch.git"
},
"keywords": [
"chrome",
"extension"
],
"author": "geewoo94",
"license": "ISC",
"bugs": {
"url": "https://github.com/geewoo94/ssearch/issues"
},
"homepage": "https://github.com/geewoo94/ssearch#readme",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@types/chrome": "0.0.127",
"@types/jest": "^26.0.19",
"@types/ramda": "^0.27.34",
"@types/lodash": "^4.14.165",
"@types/sanitize-html": "^1.27.0",
"@types/toastify-js": "^1.9.1",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"@webpack-cli/init": "^1.0.3",
"babel-jest": "^26.6.3",
"css-loader": "^5.0.1",
"eslint": "^7.14.0",
"html-webpack-plugin": "^4.5.0",
"jest": "^26.6.3",
"mini-css-extract-plugin": "^1.3.1",
"node-sass": "^5.0.0",
"sass-loader": "^10.1.0",
"style-loader": "^2.0.0",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.11",
"typescript": "^4.1.2",
"webpack": "^4.44.2",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0",
"webpack-nano": "^1.1.1"
},
"dependencies": {
"date-fns": "^2.16.1",
"lodash": "^4.17.20",
"ramda": "^0.27.1",
"sanitize-html": "^2.2.0",
"simple-shadow-dom": "^1.0.2",
"toastify-js": "^1.9.3"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "\\.test\\.ts$",
"moduleFileExtensions": [
"ts",
"js"
],
"globals": {
"ts-jest": {
"diagnostics": true
}
}
}
}