-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.22 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.22 KB
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
{
"name": "@edgeking810/react-showcase",
"version": "0.1.0",
"private": false,
"dependencies": {
"@snowpack/app-scripts-react": "^2.0.1",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@uiw/react-md-editor": "^3.9.4",
"axios": "^0.25.0",
"particles-bg": "^2.5.5",
"react": "^17.0.2",
"react-alert": "^7.0.3",
"react-alert-template-basic": "^1.0.2",
"react-dom": "^17.0.2",
"react-lazyload": "^3.2.0",
"react-markdown": "^8.0.0",
"react-paginate": "^8.1.0",
"react-router-dom": "^6.2.1",
"react-syntax-highlighter": "^15.4.5",
"react-use": "^17.3.2",
"remark-gfm": "^3.0.1",
"snowpack-plugin-svgr": "^0.1.2",
"solid-js": "^1.3.5",
"uuid": "^8.3.2",
"web-vitals": "^2.1.4",
"zustand": "^3.6.9"
},
"author": "Kishan Takoordyal <kishan@konnect.dev> (https://me.konnect.dev)",
"license": "MIT",
"scripts": {
"build:css": "npx tailwindcss build -i public/tailwind.css -o public/styles.css",
"build:css:prod": "NODE_ENV=production npx tailwindcss build -i public/tailwind.css -o build/styles.css",
"start": "npm run build:css && snowpack dev --config snowpack.config.js",
"build": "npm run build:css && rm -rf build/* && NODE_ENV=production snowpack build --config snowpack.config.js && npm run build:css:prod"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"@snowpack/plugin-babel": "^2.1.7",
"autoprefixer": "^10.4.2",
"babel-eslint": "^10.1.0",
"babel-preset-solid": "^1.3.5",
"eslint": "^8.8.0",
"eslint-config-react-app": "^7.0.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"postcss": "^8.4.6",
"snowpack": "^3.8.8",
"tailwindcss": "^3.0.19"
}
}