-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.67 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.67 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
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "flask-jwt-react",
"version": "1.0.0",
"private": true,
"repository": "",
"author": "Vicens Fayos <datracka@gmail.com>, Noah Spochart <spochart@thebravogroup.com>",
"license": "MIT",
"sideEffects": false,
"scripts": {
"bundle-report": "npx webpack-bundle-analyzer --port 4200 stats.json",
"watch": "webpack --mode development --progress --watch",
"build:dev": "NODE_ENV=development webpack --mode development",
"build:prod": "NODE_ENV=production webpack --mode production",
"serve": "export FLASK_ENV=development && flask run --cert=cert.pem --key=key.pem",
"dev": "webpack-dev-server --inline --color --compress",
"flow": "flow",
"test": "jest",
"lint:fix": "npx eslint ./client --fix"
},
"engines": {
"node": "12.4.0",
"npm": "6.9.0",
"yarn": "1.17.0"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-export-default-from": "^7.5.2",
"@babel/preset-env": "^7.6.3",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.6.3",
"@testing-library/dom": "^6.8.1",
"@testing-library/react": "^9.3.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"css-loader": "^3.1.0",
"dotenv-webpack": "^1.7.0",
"eslint": "5.16.0",
"eslint-config-airbnb": "17.1.1",
"eslint-config-prettier": "^6.4.0",
"eslint-import-resolver-babel-module": "^5.1.0",
"eslint-loader": "^3.0.2",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.1.2",
"history": "^4.10.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.9.0",
"jest-transform-graphql": "^2.1.0",
"prettier": "^1.18.2",
"react-test-renderer": "^16.10.2",
"style-loader": "^1.0.0",
"webpack": "^4.41.1",
"webpack-bundle-analyzer": "^3.5.2",
"webpack-cli": "^3.3.8",
"webpack-dev-server": "^3.8.2"
},
"dependencies": {
"babel-plugin-module-resolver": "^3.2.0",
"clsx": "^1.0.4",
"flow-bin": "^0.109.0",
"graphql": "^14.5.8",
"graphql-tag": "^2.10.1",
"jwt-decode": "^2.2.0",
"react": "16.10.2",
"react-dom": "16.10.2",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"use-react-router": "^1.0.7"
},
"jest": {
"transform": {
"\\.(gql|graphql)$": "jest-transform-graphql",
".*": "babel-jest"
},
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "identity-obj-proxy"
}
}
}