-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.13 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.13 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
{
"name": "practice-lookup",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "run-p start:dev start:api",
"test": "echo \"Error: no test specified\" && exit 1",
"start:dev": "webpack-dev-server --mode development --open --hot --port 3000",
"start:api": "node tools/apiServer.js",
"prestart:api": "node tools/createMockDb.js",
"build": "webpack --config webpack.config.js",
"check-types": "tsc"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.5",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"babel-loader": "^8.1.0",
"babel-polyfill": "^6.26.0",
"css-loader": "^3.5.3",
"html-webpack-plugin": "^4.2.0",
"json-server": "^0.16.1",
"npm-run-all": "^4.1.5",
"redux-immutable-state-invariant": "^2.1.0",
"redux-thunk": "^2.3.0",
"regenerator-runtime": "^0.13.5",
"source-map-loader": "^0.2.4",
"style-loader": "^1.2.1",
"ts-loader": "^7.0.1",
"tslint": "^6.1.2",
"tslint-immutable": "^6.0.1",
"typescript": "^3.8.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"dependencies": {
"@babel/runtime": "^7.9.2",
"@types/auth0": "^2.20.4",
"@types/auth0-js": "^9.12.4",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.7",
"@types/react-redux": "^7.1.7",
"@types/react-router-dom": "^5.1.5",
"@types/redux-immutable-state-invariant": "^2.1.1",
"auth0-js": "^9.13.2",
"auth0-lock": "^11.24.0",
"bootstrap": "^4.4.1",
"express": "^4.17.1",
"express-jwt": "^5.3.3",
"express-jwt-authz": "^2.3.1",
"immer": "^6.0.3",
"jwks-rsa": "^1.8.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-paginate": "^6.3.2",
"react-redux": "^7.2.0",
"react-router-dom": "^5.1.2",
"redux": "^4.0.5"
}
}