-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
107 lines (107 loc) · 3.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
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
107
{
"name": "jwt-auth",
"description": "An exercise to practice how to apply authentication",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"dev": "run-p dev:server dev:client",
"dev:server": "nodemon --watch server server/index.js",
"dev:client": "run-p webpack:watch tailwind",
"webpack:watch": "npm run webpack -- --watch",
"webpack": "webpack --config ./client/webpack.config.js",
"knex": "knex --knexfile server/db/knexfile.js",
"db-reset": "run-s db:*",
"db:delete": "rm server/db/dev.sqlite3",
"db:migrate": "npm run knex migrate:latest",
"db:seed": "npm run knex seed:run",
"build": "webpack --config client/webpack.config.js",
"tailwind": "tailwindcss -i ./server/public/main.css -o ./server/public/styles.css --watch",
"postinstall": "run-s db:migrate db:seed",
"test": "jest --verbose --watchAll",
"lint": "eslint --ext .js,.jsx ."
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"babel-plugin-styled-components",
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-object-rest-spread",
"@babel/plugin-transform-regenerator",
"@babel/plugin-transform-runtime"
]
},
"eslintConfig": {
"extends": "eda/react",
"ignorePatterns": [
"bundle.js"
]
},
"dependencies": {
"@auth0/auth0-react": "^1.8.0",
"@material-ui/core": "^4.12.4",
"@vscode/sqlite3": "^5.0.7",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-jwt": "^6.1.0",
"express-jwt-authz": "^2.4.1",
"jwks-rsa": "^2.0.4",
"knex": "^1.0.1",
"react-icons": "^4.4.0",
"react-leaflet": "^4.0.1",
"react-redux": "^7.2.5",
"react-type-animation": "^1.1.3",
"rodal": "^1.8.3"
},
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/plugin-proposal-object-rest-spread": "^7.12.13",
"@babel/plugin-transform-regenerator": "^7.12.13",
"@babel/plugin-transform-runtime": "^7.12.15",
"@babel/preset-env": "^7.12.16",
"@babel/preset-react": "^7.12.13",
"@reduxjs/toolkit": "^1.8.3",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^12.7.1",
"@types/leaflet": "^1.7.11",
"autoprefixer": "^10.4.7",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-plugin-styled-components": "^1.12.0",
"css-loader": "^6.7.1",
"eslint": "^8.9.0",
"eslint-config-eda": "^1.1.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.28.0",
"jest": "^26.6.3",
"jsdom": "^16.4.0",
"leaflet": "^1.8.0",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.14",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.1",
"react-router-dom": "^6.2.1",
"regenerator-runtime": "^0.13.7",
"style-loader": "^3.3.1",
"styled-components": "^5.2.1",
"superagent": "^6.1.0",
"supertest": "^6.1.3",
"tailwindcss": "^3.1.6",
"webpack": "^5.21.2",
"webpack-cli": "^4.5.0"
},
"prettier": {
"semi": false,
"singleQuote": true
}
}