-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 4.13 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 4.13 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
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
111
112
113
114
115
116
{
"name": "@lifesg/web-form-builder",
"version": "1.0.0-alpha.4",
"description": "A module for the web form builder",
"main": "dist/cjs/index.js",
"module": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "npm run rollup && npm run post:build",
"build-check": "npm run rollup rollup.check.config.js",
"post:build": "node ./scripts/post-build.js",
"lint": "eslint '**/*.{ts,tsx}' --quiet --fix",
"rollup": "rm -rf dist && rollup --bundleConfigAsCjs -c",
"pack-package": "cd dist && npm pack",
"publish-lib": "npm publish ./dist",
"test": "jest --coverage",
"prepare": "husky",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LifeSG/web-form-builder.git"
},
"keywords": [
"form-builder",
"frontend-engine"
],
"author": "Citizen Collective Commons",
"license": "ISC",
"bugs": {
"url": "https://github.com/LifeSG/web-form-builder/issues"
},
"homepage": "https://github.com/LifeSG/web-form-builder#readme",
"dependencies": {
"@dnd-kit/core": "^6.0.8",
"@dnd-kit/sortable": "^7.0.2",
"@hookform/resolvers": "^3.3.4",
"@lifesg/react-design-system": "^3.0.0-alpha.20",
"@lifesg/web-frontend-engine": "^2.0.0-alpha.8",
"react-hook-form": "^7.54.2",
"use-immer": "^0.9.0",
"yup": "^1.4.0"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@floating-ui/dom": "^1.6.13",
"@floating-ui/react": "^0.26.28",
"@lifesg/react-icons": "^1.10.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-image": "^3.0.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@storybook/addon-a11y": "^7.4.6",
"@storybook/addon-actions": "^7.4.6",
"@storybook/addon-essentials": "^7.4.6",
"@storybook/addon-interactions": "^7.4.6",
"@storybook/addon-links": "^7.4.6",
"@storybook/addon-storysource": "^7.6.4",
"@storybook/addon-themes": "^7.5.1",
"@storybook/react": "^7.4.6",
"@storybook/react-webpack5": "^7.4.6",
"@testing-library/jest-dom": "^6.7.0",
"@testing-library/react": "^12.1.5",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.14.180",
"@types/react": "^17.0.43",
"@types/react-dom": "^17.0.14",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"babel-loader": "^8.2.4",
"babel-plugin-styled-components": "^2.0.6",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"globals": "^14.0.0",
"husky": "^9.0.11",
"jest": "^30.0.5",
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^30.0.5",
"jest-junit": "^16.0.0",
"jest-styled-components": "^7.2.0",
"lint-staged": "^12.3.7",
"postcss-import": "^16.0.1",
"prettier": "^3.2.5",
"react": "^17.0.2",
"react-docgen-typescript": "^2.2.2",
"react-dom": "^17.0.2",
"remark-gfm": "^4.0.0",
"rollup": "^3.29.4",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"storybook": "^7.4.6",
"styled-components": "^6.1.19",
"typescript": "^4.8.2",
"typescript-eslint": "^7.1.0"
},
"peerDependencies": {
"@floating-ui/dom": "^1.6.10",
"@floating-ui/react": "^0.26.23",
"@lifesg/react-icons": "^1.10.0",
"react": "^17.0.2 || ^18.0.0",
"react-dom": "^17.0.2 || ^18.0.0",
"styled-components": "^6.1.19"
},
"lint-staged": {
"*.{tsx,ts}": [
"eslint --fix"
]
}
}