-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.61 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.61 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
{
"name": "react-form-builder",
"private": true,
"version": "0.0.0",
"homepage": "https://github.com/bronz3beard/react-form-builder",
"author": "bronz3beard <exempli.gratia.webdesign@gmail.com> (https://www.eg-web-design.com/)",
"keywords": [
"react",
"from",
"form builder",
"custom form"
],
"main": "dist/index.js",
"module": "dist/index.js",
"scripts": {
"dev-og": "vite",
"build-og": "tsc && vite build",
"preview": "vite preview",
"build": "rm -rf dist && NODE_ENV=production babel src/lib --out-dir dist --copy-files",
"watch:css": "postcss ./assets/tailwind.css -o ./assets/main.css",
"watch": "chokidar \"./src/**/*.tsx\" -c \"npm run watch:css\"",
"dev": "concurrently \"npm run watch\" \"npm run dev-og\""
},
"dependencies": {
"react": "^18.0.0",
"react-csv": "^2.2.2",
"react-dom": "^18.0.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/preset-react": "^7.17.12",
"@types/eslint": "^8.4.2",
"@types/react": "^18.0.0",
"@types/react-csv": "^1.1.2",
"@types/react-dom": "^18.0.0",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"@vitejs/plugin-react": "^1.3.0",
"autoprefixer": "^10.4.7",
"chokidar-cli": "^3.0.0",
"concurrently": "^7.2.1",
"eslint": "^8.16.0",
"eslint-plugin-react": "^7.30.0",
"postcss": "^8.4.14",
"postcss-cli": "^9.1.0",
"prettier": "^2.6.2",
"tailwindcss": "^3.0.24",
"typescript": "^4.6.3",
"vite": "^2.9.9",
"vite-plugin-eslint": "^1.6.1"
}
}