-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.56 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@dynamic-form/wavelop",
"version": "0.3.5",
"description": "Dynamic form from configuration with React",
"author": "Wavelop",
"license": "MIT",
"repository": "Wavelop/dynamic-form",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.modern.js",
"esmodule": "dist/index.modern.js",
"source": "src/index.js",
"engines": {
"node": ">=10"
},
"scripts": {
"deploy": "npm run deploy:documentation",
"deploy:documentation": "firebase use default && firebase deploy",
"predeploy": "npm run build:storybook",
"storybook": "start-storybook -p 6006",
"build:storybook": "build-storybook -c .storybook -o build/"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@storybook/addon-actions": "^6.0.6",
"@storybook/addon-essentials": "^6.0.6",
"@storybook/addon-links": "^6.0.6",
"@storybook/node-logger": "^6.0.6",
"@storybook/preset-create-react-app": "^3.1.4",
"@storybook/react": "^6.0.6",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.3.0",
"babel-loader": "^8.1.0",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.7.0",
"eslint-config-standard": "^14.1.0",
"eslint-config-standard-react": "^9.2.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.5",
"jest": "^25.3.0",
"lint-staged": "^10.2.9",
"microbundle": "^0.12.3",
"microbundle-crl": "^0.13.8",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"prettier-eslint": "^11.0.0",
"prettier-eslint-cli": "^5.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-is": "^16.13.1",
"react-jss": ">=10.1.1",
"react-scripts": "^3.4.1",
"react-test-renderer": "^16.13.1"
},
"files": [
"dist"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"prepare-commit-msg": "./repository-helpers/prepare-commit-msg.sh $HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged",
"post-commit": "git update-index --again"
}
},
"lint-staged": {
"./src/**/*.{js,jsx}": [
"prettier-eslint —eslint-config-path $PWD/client/.eslintrc.js --write",
"eslint"
]
},
"dependencies": {
"@storybook/addon-docs": "^6.0.6"
}
}