-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.32 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
{
"name": "refactor-demo",
"version": "0.0.1",
"description": "Desc",
"main": "index.js",
"scripts": {
"test": "jest",
"test:legacy": "jest legacy.*spec.jsx?",
"test:refactored": "jest refactored.*spec.jsx?",
"test:refactoring": "jest refactoring.*spec.jsx?"
},
"repository": {
"type": "git",
"url": "git+https://github.com/varholak-peter/refactor-demo.git"
},
"keywords": [
"demo",
"refactor",
"react"
],
"author": "Peter Varholak <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/varholak-peter/refactor-demo/issues"
},
"homepage": "https://github.com/varholak-peter/refactor-demo#readme",
"dependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.6",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@testing-library/jest-dom": "^5.5.0",
"@testing-library/react": "^10.0.3",
"axios": "^0.19.2",
"babel-jest": "^25.5.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"jest": "^25.5.2",
"lodash.debounce": "^4.0.8",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"sinon": "^9.0.2"
}
}