This repository was archived by the owner on Feb 26, 2024. 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
83 lines (83 loc) · 3.06 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 3.06 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
{
"name": "survey-form",
"version": "2.0.3",
"description": "Survey form",
"main": "lib/index.js",
"repository": "github:HealthByRo/survey-form",
"author": "Arabella Front-End Team",
"license": "MIT",
"scripts": {
"build": "rm -rf lib && npm run quick-build",
"quick-build": "babel -d lib/ src/ --ignore \"**/*.test.js\",\"**/*.stories.js\"",
"test": "jest --coverage --config=.jest.json",
"test:watch": "./node_modules/.bin/jest --watchAll --config=.jest.json ./src",
"test:badge": "yarn run test && node ./scripts/coverage.js",
"storybook": "start-storybook -p 6006",
"start": "npm run storybook",
"build-storybook": "build-storybook",
"lint": "npm run lint:js",
"lint:eslint": "eslint --ignore-path .gitignore --ignore-pattern 'flow-typed/' --ignore-pattern 'lib/' src/**",
"lint:js": "npm run lint:eslint -- src/ ",
"lint:staged": "lint-staged",
"prerelease": "git checkout develop",
"release": "npm version",
"postrelease": "git push && git push --tags && git checkout master && git merge develop && git push && git checkout develop"
},
"lint-staged": {
"*.js": "lint:eslint"
},
"pre-commit": "lint:staged",
"dependencies": {
"react-form-fields": "https://github.com/HealthByRo/react-form-fields#^1.3.0",
"return-deep-diff": "^0.3.0",
"validators": "https://github.com/HealthByRo/validators#^2.3.3"
},
"devDependencies": {
"@kadira/react-storybook-decorator-centered": "^1.1.2",
"@kadira/storybook": "^2.21.0",
"antd": "^3.6.4",
"axios-mock-adapter": "^1.9.0",
"babel-cli": "^6.24.1",
"babel-eslint": "^8.2.5",
"babel-jest": "^23.2.0",
"babel-plugin-root-import": "^6.1.0",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^5.0.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-import-resolver-babel-plugin-root-import": "^1.1.1",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.10.0",
"flow-bin": "^0.44.2",
"html-entities": "^1.2.1",
"humps": "^2.0.1",
"jest": "^23.2.0",
"jest-cli": "^23.2.0",
"jsdom": "^11.11.0",
"lcov2badge": "^0.1.0",
"lint-staged": "^7.2.0",
"prop-types": "^15.6.2",
"raf": "^3.4.0",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-intl": "^2.3.0",
"react-redux": "^5.0.4",
"react-router": "3.0.0",
"react-router-redux": "^4.0.8",
"react-test-renderer": "^16.2.0",
"react-unit-testing-utils": "https://github.com/HealthByRo/react-unit-testing-utils#^1.2.0",
"redux-connect-backend": "https://github.com/HealthByRo/redux-connect-backend.git#^1.0.2",
"redux-form": "^7.4.2",
"redux-immutable": "^4.0.0",
"redux-saga": "^0.16.0"
},
"homepage": "https://github.com/HealthByRo/survey-form/"
}