-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.35 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.35 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
74
75
76
77
78
79
80
81
82
83
{
"name": "components",
"version": "0.1.0",
"homepage": ".",
"dependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@seedao/sns-js": "^0.7.0",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.68",
"@types/react": "^18.2.43",
"@types/react-datepicker": "^4.19.5",
"@types/react-dom": "^18.2.17",
"axios": "^1.6.7",
"md-editor-rt": "^4.11.0",
"react": "^18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-datepicker": "^4.25.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.49.2",
"react-scripts": "5.0.1",
"react-select": "^5.8.0",
"rollup-plugin-typescript2": "^0.36.0",
"styled-components": "^6.1.1",
"typescript": "^4.9.5",
"uuid": "^9.0.1",
"web-vitals": "^2.1.4",
"xlsx": "^0.18.5"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"clean": "rimraf ./dist",
"buildNPM": "npm run clean && rollup -c ./rollup.config.js && node version.js",
"publish": "npm publish --access public"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"rules": {
"array-callback-return": "off",
"react-hooks/exhaustive-deps": "off"
}
},
"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/core": "^7.21.0",
"@babel/plugin-transform-runtime": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.2",
"@types/react-beautiful-dnd": "^13.1.7",
"@types/react-router-dom": "^5.3.3",
"@types/uuid": "^9.0.7",
"react-router-dom": "^6.21.0",
"rollup": "^2.79.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-dts": "^4.2.3",
"rollup-plugin-polyfill-node": "^0.12.0",
"rollup-plugin-terser": "^7.0.2"
}
}