-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.92 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
{
"name": "beagle-forms",
"version": "1.0.0",
"description": "Beagle + React --> Forms Example",
"main": "src/index.js",
"author": "Raphael Pimenta & Tiago Peres",
"license": "MIT",
"scripts": {
"start": "webpack-dev-server --hot",
"start:mock": "cross-env APP_ENV=mock yarn start & yarn stub",
"build": "webpack --mode=production",
"test": "jest",
"eslint": "eslint src --quiet",
"stub": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' nodemon --watch 'src/**/*.ts' --exec 'ts-node' stub/index.ts"
},
"dependencies": {
"@babel/runtime": "^7.10.2",
"@hapi/hapi": "^20.0.2",
"axios": "^0.19.2",
"lodash": "^4.17.15",
"moment": "^2.26.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-hot-loader": "^4.12.21",
"react-router-dom": "^5.2.0",
"styled-components": "^5.1.1",
"typescript": "^3.9.5"
},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/node": "^7.10.1",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-proposal-object-rest-spread": "^7.10.1",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"@babel/preset-typescript": "^7.10.1",
"@hapi/joi": "^17.1.1",
"@types/hapi": "^18.0.3",
"@types/jest": "^25.2.3",
"@types/lodash": "^4.14.155",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.1.5",
"@types/styled-components": "^5.1.0",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.0.1",
"babel-loader": "^8.1.0",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-styled-components": "^1.10.7",
"clean-webpack-plugin": "^3.0.0",
"core-js": "^3.6.5",
"cross-env": "^7.0.2",
"css-loader": "^3.4.2",
"dotenv": "^8.2.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.5.0",
"eslint": "^7.2.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-import-resolver-babel-module": "^5.1.2",
"eslint-import-resolver-webpack": "^0.12.1",
"eslint-plugin-import": "^2.21.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"jest": "^26.0.1",
"jest-localstorage-mock": "^2.4.2",
"jest-styled-components": "^7.0.2",
"nock": "^12.0.3",
"nodemon": "^2.0.4",
"react-svg-loader": "^3.0.3",
"sinon": "^9.0.2",
"style-loader": "^1.2.1",
"ts-jest": "^26.1.0",
"ts-node": "^8.10.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
}
}