-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.16 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
{
"name": "msw-server",
"version": "1.0.0",
"main": "dist/index.js",
"types": "dist/",
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"start": "yarn build && (cd app && yarn dev)",
"testcafe": "NEXT_PUBLIC_IS_TESTCAFE=1 node runtestCafe.js",
"format:write": "prettier --write .",
"build": "tsc"
},
"dependencies": {
"@graphql-tools/mock": "^6.0.15",
"@graphql-tools/schema": "^6.0.15",
"@walmartlabs/json-to-simple-graphql-schema": "^2.0.1",
"graphql": "^15.3.0",
"json-server": "^0.16.1",
"lodash-id": "^0.14.0",
"msw": "^0.49.2",
"next": "^13.0.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-query": "2.5.6",
"testcafe": "2.1.0"
},
"devDependencies": {
"@testing-library/testcafe": "4.3.1",
"@types/jest": "^26.0.3",
"@types/node": "^14.0.26",
"@types/node-fetch": "^2.5.7",
"fetch-absolute": "^1.0.0",
"graphql-request": "^2.0.0",
"jest": "^26.0.1",
"lowdb": "^1.0.0",
"node-fetch": "^2.6.0",
"openssl-self-signed-certificate": "^1.1.6",
"prettier": "^2.0.5",
"ts-jest": "^26.1.0",
"typescript": "4.3.2"
}
}