This repository has been archived by the owner on May 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
112 lines (112 loc) · 3.61 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "flycomponents",
"version": "5.4.0",
"description": "Flywire React components",
"main": "./dist/flycomponents.js",
"scripts": {
"start": "NODE_ENV=development webpack-dev-server",
"clean": "rm -rf dist",
"prebuild": "npm run lint && npm run test && npm run clean",
"build": "cross-env NODE_ENV=production webpack",
"build:docs": "cross-env NODE_ENV=development webpack",
"build:clean": "npm run clean && cross-env NODE_ENV=production webpack",
"docs:push": "git add -A docs/dist && git commit -m 'Update docs' && git push",
"test": "NODE_ENV=test jest",
"test:watch": "NODE_ENV=test jest --watch",
"test:update": "NODE_ENV=test npm run test -- -u",
"lint": "eslint --fix src docs/src",
"version": "npm run build && git add -A dist && git push && git push --tags",
"postversion": "npm run build:docs && npm run docs:push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peertransfer/flycomponents.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/peertransfer/flycomponents/issues"
},
"homepage": "https://github.com/peertransfer/flycomponents#readme",
"dependencies": {
"accounting": "^0.4.1",
"classnames": "^2.2.6",
"dom-scroll-into-view": "^1.2.1",
"flystyles": "^2.21.0",
"focus-trap-react": "^6.0.0",
"fuse.js": "^3.2.1",
"moment": "^2.22.2",
"prop-types": "^15.7.2",
"react-focus-lock": "^2.2.1"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-async-to-generator": "^7.8.3",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"@flywire/prettier-config": "^1.1.0",
"@testing-library/dom": "^8.11.3",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.4",
"@testing-library/user-event": "^13.5.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.3",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^8.2.3",
"babel-jest": "^27.5.1",
"babel-loader": "^8.1.0",
"core-js": "^3.6.4",
"cross-env": "^5.1.6",
"css-loader": "^0.28.11",
"enzyme": "^3.11.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-config-standard": "^14.1.0",
"eslint-config-standard-react": "^9.2.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-standard": "^4.0.1",
"github-markdown-css": "^2.10.0",
"jest": "^27.5.1",
"jest-react-hooks-shallow": "^1.5.1",
"jest-watch-typeahead": "^1.0.0",
"marked": "^0.4.0",
"prettier": "^1.19.1",
"raf": "^3.4.0",
"raw-loader": "^0.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^4.3.1",
"regenerator-runtime": "^0.13.5",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^1.2.5",
"url-loader": "^1.0.1",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.4",
"webpack-dev-server": "^3.1.4",
"webpack-hot-middleware": "^2.22.2"
},
"jest": {
"testEnvironment": "jsdom",
"setupFiles": [
"<rootDir>/jest/setup.js"
],
"watchPlugins": [
"jest-watch-typeahead/filename",
"jest-watch-typeahead/testname"
],
"setupFilesAfterEnv": [
"<rootDir>/jest/enableHooks.js",
"<rootDir>/jest/extendExpect.js"
]
}
}