forked from JarrodMalkovic/auction-website
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 2.13 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
{
"name": "frontend-service",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest",
"coverage": "cross-env NODE_ENV=test jest --coverage",
"build:base-css": "tailwindcss build ./styles/tailwind.base.css -o ./styles/base.css"
},
"dependencies": {
"@emotion/css": "11.0.0",
"@emotion/react": "11.1.2",
"@emotion/server": "11.0.0",
"@emotion/styled": "11.0.0",
"@jjmauction/common": "1.0.20",
"@tailwindcss/forms": "0.2.1",
"autoprefixer": "10.1.0",
"axios": "0.21.1",
"formik": "2.2.6",
"next": "10.0.4",
"postcss": "8.2.2",
"react": "17.0.1",
"react-datepicker": "3.4.1",
"react-dom": "17.0.1",
"react-dropzone": "11.3.1",
"react-stripe-checkout": "2.6.3",
"react-toastify": "7.0.3",
"socket.io": "2.3.0",
"socket.io-client": "2.3.0",
"tailwindcss": "2.0.2",
"twin.macro": "2.1.1",
"yup": "0.32.8"
},
"devDependencies": {
"@babel/core": "7.12.10",
"@emotion/babel-preset-css-prop": "11.0.0",
"@testing-library/dom": "7.29.6",
"@testing-library/jest-dom": "5.11.9",
"@testing-library/react": "11.2.5",
"@testing-library/user-event": "12.8.1",
"@trivago/prettier-plugin-sort-imports": "1.4.1",
"@types/jest": "26.0.20",
"@types/node": "14.14.31",
"@types/react": "17.0.2",
"autoprefixer": "10.1.0",
"babel-jest": "26.6.3",
"babel-plugin-macros": "3.0.0",
"cross-env": "7.0.3",
"jest": "26.6.3",
"jest-dom": "4.0.0",
"postcss": "8.2.1",
"tailwindcss": "2.0.2",
"ts-jest": "26.4.4",
"typescript": "4.1.3",
"xwind": "0.7.4"
},
"jest": {
"moduleNameMapper": {
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js"
},
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"testMatch": [
"**/__tests__/*.(ts|tsx)"
],
"setupFilesAfterEnv": [
"<rootDir>/jest.setup.ts"
],
"testPathIgnorePatterns": [
"./.next/",
"./node_modules/"
],
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.jest.json"
}
}
}
}