-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
116 lines (116 loc) · 3.37 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
108
109
110
111
112
113
114
115
116
{
"name": "my-fullstack-collection",
"version": "0.1.0",
"description": "Build a fullstack collection app",
"repository": "https://https://github.com/dev-academy-challenges/my-fullstack-collection",
"main": "server/index.ts",
"scripts": {
"build": "run-p build:client build:server",
"build:client": "npm run webpack -- --mode production",
"build:server": "npm run knex -- migrate:latest",
"start": "ts-node server/index.ts",
"test": "jest",
"test:watch": "jest --noStackTrace --watchAll",
"dev": "run-p dev:client dev:server",
"dev:client": "npm run webpack -- --watch",
"dev:server": "nodemon server/index.ts",
"webpack": "webpack --config ./client/webpack.config.js",
"knex": "knex --knexfile ./server/db/knexfile.js",
"lint": "eslint --ext .js,.jsx,.ts,.tsx ."
},
"keywords": [
"fullstack"
],
"author": "Dev Academy Aotearoa",
"license": "ISC",
"babel": {
"presets": [
"@babel/preset-typescript",
"@babel/preset-env",
[
"@babel/preset-react",
{
"runtime": "automatic"
}
]
]
},
"eslintConfig": {
"extends": "@devacademy/eslint-config/react",
"ignorePatterns": [
"bundle.js"
]
},
"devDependencies": {
"@babel/core": "^7.15.6",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-object-rest-spread": "^7.15.6",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.17.12",
"@devacademy/eslint-config": "^1.8.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4",
"@testing-library/user-event": "^12.7.1",
"@types/express": "^4.17.14",
"@types/react": "^18.0.23",
"@types/react-dom": "^18.0.7",
"@types/supertest": "^2.0.12",
"babel-loader": "^8.2.2",
"eslint": "^8.10.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.2.2",
"jest-environment-jsdom": "^29.3.1",
"nock": "^13.3.0",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"react": "^18.0.2",
"react-dom": "^18.2.0",
"react-redux": "^8.0.4",
"react-router-dom": "^6.4.2",
"redux": "^4.1.1",
"redux-thunk": "^2.4.2",
"supertest": "^6.2.2",
"ts-jest": "^29.0.3",
"typescript": "~4.8.4",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"@auth0/auth0-react": "^2.0.1",
"@chakra-ui/icons": "^2.0.18",
"@chakra-ui/react": "^2.5.5",
"@devacademy/eslint-config": "^1.8.0",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@redux-devtools/extension": "^3.2.3",
"express": "^4.17.2",
"express-jwt": "^8.4.1",
"framer-motion": "^10.11.5",
"jsonwebtoken": "^9.0.0",
"jwks-rsa": "^3.0.1",
"knex": "^2.3.0",
"pg": "^8.8.0",
"react-icons": "^4.8.0",
"react-img-mapper": "^1.5.1",
"sqlite3": "^5.1.2",
"superagent": "7.1.1",
"ts-node": "^10.9.1"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom"
},
"browserslist": "> 2%, not dead"
}