-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·58 lines (58 loc) · 1.79 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": "peffect-bookmarks-manager",
"version": "0.0.1",
"description": "The Chrome bookmarks manager you were waiting for.",
"scripts": {
"build": "webpack --config webpack.prod.js",
"dev": "webpack --config webpack.dev.js",
"dev-watch": "webpack -w --config webpack.dev.js",
"serve": "webpack serve --config webpack.dev.js",
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest",
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix"
},
"author": "Christian Toscano",
"license": "MIT",
"devDependencies": {
"@types/chrome": "^0.0.142",
"@types/jest": "^26.0.23",
"@types/lodash": "^4.14.170",
"@types/react": "^17.0.8",
"@types/react-dom": "^17.0.5",
"@types/react-redux": "^7.1.16",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"@webpack-cli/serve": "^1.4.0",
"css-loader": "^5.2.6",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^27.0.1",
"node-sass": "^6.0.0",
"prettier": "^2.3.0",
"sass-loader": "^10.1.1",
"serve": "^11.3.2",
"style-loader": "^2.0.0",
"ts-loader": "^8.0.14",
"typescript": "^4.3.2",
"webpack": "^4.46.0",
"webpack-cli": "^4.4.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@dnd-kit/core": "^4.0.0",
"@emotion/react": "^11.5.0",
"@emotion/styled": "^11.3.0",
"@mui/icons-material": "^5.0.4",
"@mui/material": "^5.0.4",
"@reduxjs/toolkit": "^1.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hot-toast": "^1.0.2",
"react-redux": "^7.2.4",
"react-use": "^17.2.4",
"redux": "^4.1.0"
}
}