This repository was archived by the owner on Mar 16, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.53 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.53 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
{
"name": "react-form-generator",
"version": "0.0.0-development",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint src",
"prepare": "husky install",
"commit": "git-cz",
"semantic-release": "semantic-release",
"test": "jest",
"test:watch": "yarn test --watch",
"test:ci": "jest --runInBand",
"generate": "yarn plop --plopfile generators/plopfile.js",
"storybook": "start-storybook -p 6006 -c .storybook -p 6008",
"build-storybook": "build-storybook -c .storybook",
"chromatic": "npx chromatic --project-token=5d592a3eb42e"
},
"lint-staged": {
"src/**/*": [
"yarn lint --fix",
"yarn test --findRelatedTests --bail"
]
},
"dependencies": {
"fastest-validator": "^1.12.0",
"next": "^12.0.7",
"next-pwa": "^5.4.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"styled-components": "^5.3.3"
},
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^8.0.3",
"@semantic-release/release-notes-generator": "^10.0.3",
"@storybook/addon-essentials": "^6.4.9",
"@storybook/react": "^6.4.9",
"@swc/core": "^1.2.119",
"@swc/jest": "^0.2.21",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.0.3",
"@types/react": "^17.0.37",
"@types/styled-components": "^5.1.25",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.30.6",
"chromatic": "^6.2.3",
"commitizen": "^4.2.4",
"css-loader": "^6.7.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.4.1",
"eslint-config-next": "12.0.7",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.4",
"jest": "^27.4.4",
"jest-styled-components": "^7.0.8",
"lint-staged": "^13.0.3",
"plop": "^3.0.4",
"prettier": "2.5.1",
"sass": "^1.45.0",
"sass-loader": "13",
"semantic-release": "^18.0.1",
"style-loader": "^3.3.1",
"typescript": "^4.5.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "https://github.com/letanure/react-form-generator.git"
}
}