forked from stimulus-components/stimulus-rails-nested-form
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.64 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
{
"name": "stimulus-rails-nested-form",
"version": "4.1.0",
"description": "A Stimulus controller to create new fields on the fly to populate your Rails relationship.",
"repository": "[email protected]:stimulus-components/stimulus-rails-nested-form.git",
"author": "Guillaume Briday <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/stimulus-components/stimulus-rails-nested-form",
"private": false,
"main": "dist/stimulus-rails-nested-form.umd.js",
"module": "dist/stimulus-rails-nested-form.mjs",
"scripts": {
"format": "prettier-standard '**/*.{ts,css,html}' --format",
"lint": "prettier-standard '**/*.{ts,css,html}' --lint",
"dev": "vite",
"prod": "vite build --mode netlify",
"build": "tsc --noEmit && vite build",
"version": "yarn build",
"test": "BABEL_ENV=test jest",
"np": "np --no-2fa"
},
"devDependencies": {
"@babel/core": "7.20.7",
"@babel/plugin-syntax-class-properties": "7.12.13",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@hotwired/stimulus": "^3.2.1",
"@testing-library/dom": "^8.19.1",
"@types/jest": "^29.2.4",
"autoprefixer": "^10.4.13",
"babel-jest": "^29.3.1",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"mutationobserver-shim": "^0.3.7",
"np": "^7.6.2",
"postcss": "^8.4.20",
"prettier-standard": "16.4.1",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.4",
"vite": "^4.0.3"
},
"jest": {
"setupFiles": [
"<rootDir>/jest/jest-setup.js"
]
},
"peerDependencies": {
"@hotwired/stimulus": "^3.2.1"
}
}