-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.73 KB
/
package.json
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
{
"name": "@citizensadvice/rails-form-inputs",
"version": "1.4.0",
"description": "React component to turn an object into Rails compatible form inputs",
"type": "module",
"main": "./dist/index.js",
"files": [
"dist/*"
],
"scripts": {
"lint": "npm run lint:format && npm run lint:js",
"lint:js": "eslint . && tsc --noEmit",
"lint:format": "prettier . --check",
"test": "jest",
"format": "prettier . --write",
"clean": "rm -rf dist",
"build": "npm run clean && tsc --declaration --sourceMap --declarationMap --noEmitOnError && node dist/index.js",
"build:swc": "npm run clean && swc src --ignore **/*.test.{jsx,js} -d ./dist --source-maps true",
"preversion": "npm run lint",
"prepublishOnly": "npm run build"
},
"author": "[email protected]",
"license": "ISC",
"devDependencies": {
"@citizensadvice/form-to-rack-params": "v1.2.0",
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.1",
"@swc/cli": "^0.6.0",
"@swc/jest": "^0.2.36",
"@testing-library/react": "^16.0.0",
"@types/react": "^18.3.12",
"eslint": "^9.15.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-jest-dom": "^5.5.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-testing-library": "^7.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.4.1",
"react": "^18.3.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0"
},
"peerDependencies": {
"react": ">= 15"
},
"np": {
"yarn": false
},
"prettier": {
"singleQuote": true
},
"publishConfig": {
"access": "public"
}
}