-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.89 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
{
"name": "bookshelf-learning",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"startF": "webpack serve --config ./build-utils/webpack.config.js --env env=dev",
"buildF": "webpack --config ./build-utils/webpack.config.js --env env=prod",
"buildF:analyze": "yarn run buildF -- --env addon=bundleanalyze",
"lint": "eslint . --fix",
"startB": " babel-node src/BackEnd/index.js",
"testF": "is-ci \"testF:coverage\" \"testF:watch\"",
"testF:watch": "jest --config ./src/FrontEnd/jest.config.js --watch",
"testF:coverage": "jest --watch=false --coverage",
"testF:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --watch --runInBand"
},
"devDependencies": {
"@babel/core": "7.12.10",
"@babel/eslint-parser": "7.12.13",
"@babel/eslint-plugin": "7.12.13",
"@babel/preset-env": "7.12.11",
"@babel/preset-react": "7.12.10",
"@emotion/eslint-plugin": "11.0.0",
"@testing-library/cypress": "7.0.3",
"@testing-library/jest-dom": "5.11.9",
"@testing-library/react": "11.2.3",
"@testing-library/react-hooks": "5.0.3",
"@testing-library/user-event": "12.6.2",
"@types/react": "17.0.0",
"@types/react-dom": "17.0.0",
"babel-loader": "8.2.2",
"cross-env": "7.0.3",
"css-loader": "^5.0.1",
"cypress": "6.3.0",
"cypress-hmr-restarter": "2.0.1",
"eslint": "7.19.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-prettier": "7.2.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-plugin-cypress": "2.11.2",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-react": "7.22.0",
"eslint-plugin-react-hooks": "4.2.0",
"husky": "4.3.8",
"inquirer": "7.3.3",
"is-ci": "2.0.0",
"is-ci-cli": "2.2.0",
"jest": "26.6.3",
"jest-watch-typeahead": "0.6.1",
"npm-run-all": "4.1.5",
"prettier": "2.2.1",
"react-test-renderer": "17.0.1",
"resolve": "1.19.0",
"serve": "11.3.2",
"start-server-and-test": "1.12.0",
"style-loader": "^2.0.0",
"url-loader": "^4.1.1",
"webpack": "5.19.0",
"webpack-bundle-analyzer": "4.4.0",
"webpack-cli": "4.4.0",
"webpack-dev-server": "4.0.0-beta.0",
"webpack-merge": "5.7.3",
"whatwg-fetch": "3.5.0"
},
"dependencies": {
"@emotion/react": "^11.1.4",
"@emotion/styled": "11.0.0",
"@hot-loader/react-dom": "17.0.1",
"@reach/dialog": "0.13.0",
"@reach/menu-button": "0.13.0",
"@reach/tabs": "0.13.0",
"@reach/tooltip": "0.13.0",
"@reach/visually-hidden": "0.13.0",
"clean-webpack-plugin": "3.0.0",
"debounce-fn": "4.0.0",
"dotenv": "8.2.0",
"dotenv-webpack": "6.0.0",
"express": "4.17.1",
"faker": "5.2.0",
"history": "5.0.0",
"html-webpack-plugin": "4.5.1",
"match-sorter": "6.1.0",
"mini-css-extract-plugin": "1.3.5",
"msw": "0.26.0",
"node-match-path": "^0.6.1",
"normalize.css": "8.0.1",
"postcss": "8.2.4",
"postcss-flexbugs-fixes": "5.0.2",
"prop-types": "15.7.2",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-error-boundary": "3.1.0",
"react-hot-loader": "4.13.0",
"react-icons": "4.1.0",
"react-query": "2.x",
"react-router": "6.0.0-beta.0",
"react-router-dom": "6.0.0-beta.0",
"scheduler": "0.20.1",
"stop-runaway-react-effects": "2.0.0"
},
"repository": "https://github.com/dlrandy/bookshelf-learning.git",
"author": "'dlrandy' <'[email protected]'>",
"homepage": "http://localhost:8080",
"license": "MIT"
}