-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 2.14 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
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@nerdgeschoss/shimmer",
"version": "4.0.0",
"description": "Simple application development in Rails",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "yarn build:js && yarn build:components && yarn build:types",
"build:js": "NODE_ENV=production rollup -c",
"build:components": "NODE_ENV=production rollup --config rollup.component.config.js && echo 'import \"./stack.css\";' >> dist/components/stack.js",
"build:types": "tsc --emitDeclarationOnly",
"format": "prettier --write \"src/**/*.{ts,css,scss,json,yml}\"",
"lint": "yarn lint:types && yarn lint:style",
"lint:types": "tsc --noEmit",
"lint:style": "eslint src/**/*.ts --max-warnings 0"
},
"contributors": [
"Jens Ravens",
"Geraldine Atayan"
],
"license": "MIT",
"dependencies": {
"@hotwired/stimulus": "^3.0.1",
"@popperjs/core": "^2.11.0",
"@rails/request.js": "^0.0.6"
},
"devDependencies": {
"@babel/core": "^7.0.0-0",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-flow": "^7.16.7",
"@babel/preset-react": "^7.16.7",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"esbuild": "^0.14.2",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"postcss": "^8.4.24",
"postcss-preset-env": "^8.5.1",
"prettier": "^2.5.1",
"rollup": "^2.61.0",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-esbuild": "^4.7.2",
"rollup-plugin-postcss": "^4.0.2",
"sass": "^1.63.4",
"typescript": "^4.1.3",
"classnames": "^2.3.2"
},
"peerDependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1",
"classnames": "^2.3.2"
},
"keywords": [
"rails",
"form",
"modal"
],
"bugs": {
"url": "https://github.com/nerdgeschoss/shimmer/issues"
},
"homepage": "https://github.com/nerdgeschoss/shimmer#readme"
}