forked from yjwhy/PaWalker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.79 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 2.79 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "my-ecommerce",
"version": "0.1.0",
"private": true,
"main": "server/index.js",
"dependencies": {
"@auth0/auth0-react": "^1.8.0",
"@headlessui/react": "^1.6.4",
"@heroicons/react": "^1.0.6",
"@reduxjs/toolkit": "^1.8.3",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^13.5.0",
"@vscode/sqlite3": "^5.0.8",
"express": "^4.17.2",
"express-jwt": "^7.7.5",
"express-jwt-authz": "^2.4.1",
"jest": "^27.5.1",
"jwks-rsa": "^2.1.4",
"knex": "^1.0.7",
"nock": "^13.2.8",
"nodemon": "^2.0.19",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dispatch": "^1.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"react-redux": "^8.0.2",
"react-router-dom": "^6.3.0",
"react-scripts": "5.0.1",
"redux-thunk": "^2.3.0",
"sqlite3": "^5.0.8",
"superagent": "^8.0.0",
"supertest": "^6.2.4",
"web-vitals": "^2.1.4"
},
"babel": {
"presets": [
"@babel/preset-typescript",
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-object-rest-spread"
]
},
"scripts": {
"start": "react-scripts start",
"dev": "run-p client server",
"webpack": "webpack --config client/webpack.config.js",
"client": "npm run webpack -- --watch",
"server": "nodemon index.js",
"build": "react-scripts build",
"test": "jest",
"eject": "react-scripts eject",
"knex": "knex --knexfile ./server/db/knexfile.js",
"lint": "eslint --ext .js,.jsx ."
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"ignorePatterns": [
"bundle.js"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jest": {
"testEnvironment": "jsdom",
"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)$": "<rootDir>/__mocks__/styleMock.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",
"@tailwindcss/forms": "^0.5.2",
"autoprefixer": "^10.4.7",
"babel-loader": "^8.2.2",
"jest": "^27.5.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.14",
"tailwindcss": "^3.1.3",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2"
}
}