This repository has been archived by the owner on Jun 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 4.33 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@marvinav/private-space",
"description": "Powerfull start page for every web user",
"version": "1.0.7",
"browser": "dist/main.js",
"scripts": {
"build": "NODE_ENV=production SERVICE_WORKER=true npx webpack --mode=production",
"lint": "eslint '*/**/*.{js,ts,tsx}'",
"plugins": "npx webpack build --config=webpack.plugin.config.js --mode=production",
"plugins-watch": "npx webpack build --config=webpack.plugin.config.js --watch",
"lint-fix": "eslint '*/**/*.{js,ts,tsx}' --fix",
"test": "jest",
"types": "tsc --noEmit",
"preinstall": "node .my-space/preinstall.js",
"prettier": "prettier --check \"src\"",
"prettier-fix": "prettier -w \"src\"",
"start": "WEBPACK_DEV_SERVE=true NODE_ENV=development webpack serve --mode=development",
"chrome": "google-chrome --user-data-dir=/tmp/foo --ignore-certificate-errors --unsafely-treat-insecure-origin-as-secure=https://localhost:8080 https://localhost:8080",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"engines": {
"node": ">14.15.0"
},
"author": "marvinav",
"license": "MIT",
"dependencies": {
"@types/pouchdb": "^6.4.0",
"@vanilla-extract/recipes": "^0.2.3",
"@vanilla-extract/sprinkles": "^1.3.3",
"dexie": "^3.2.0",
"dompurify": "^2.3.4",
"localforage": "^1.10.0",
"nanoid": "^3.1.30",
"particles.js": "^2.0.0",
"pouchdb": "^7.2.2",
"prop-types": "^15.8.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^6"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/plugin-proposal-class-properties": "^7.16.5",
"@babel/plugin-proposal-decorators": "^7.16.5",
"@babel/plugin-proposal-object-rest-spread": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-react": "^7.16.5",
"@babel/preset-typescript": "^7.16.5",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.4",
"@storybook/addon-actions": "^6.4.9",
"@storybook/addon-essentials": "^6.4.9",
"@storybook/addon-links": "^6.4.9",
"@storybook/builder-webpack5": "^6.4.9",
"@storybook/manager-webpack5": "^6.4.9",
"@storybook/react": "^6.4.9",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/dompurify": "^2.3.2",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/react-router-dom": "^5.3.2",
"@types/requirejs": "^2.1.34",
"@typescript-eslint/eslint-plugin": "^5",
"@typescript-eslint/parser": "^5.8.1",
"@vanilla-extract/babel-plugin": "^1.1.4",
"@vanilla-extract/css": "^1.6.8",
"@vanilla-extract/webpack-plugin": "^2.1.5",
"assets-webpack-plugin": "^7.1.1",
"babel-jest": "^27.4.5",
"babel-loader": "^8.2.3",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^10.2.0",
"css-loader": "^6.5.1",
"cssnano": "^5.0.14",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-boundaries": "^2.8.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-storybook": "^0.5.5",
"eslint-plugin-unicorn": "^39.0.0",
"favicons": "^6.2.2",
"favicons-webpack-plugin": "^5.0.2",
"html-webpack-plugin": "^5.5.0",
"jest": "^27.4.5",
"mini-css-extract-plugin": "^2.4.5",
"postcss": "^8.4.5",
"postcss-loader": "^6.2.1",
"postcss-preset-env": "^7.1.0",
"prettier": "^2.5.1",
"react-refresh": "^0.11.0",
"sb": "^6.4.9",
"storybook-addon-pseudo-states": "^1.0.0",
"style-loader": "^3.3.1",
"typescript": "^4.5.4",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.2"
},
"resolutions": {
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0"
}
}