-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.19 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
{
"name": "appointments",
"version": "1.0.0",
"description": "Appointments system",
"main": "index.js",
"scripts": {
"build": "npm run build:css && webpack",
"test": "jest --watchAll",
"build-server": "webpack --config webpack-server.config.js",
"test-server": "jest --config server/jest.json",
"serve": "node dist/server/server.js",
"relay": "relay-compiler --src ./src --schema ./src/schema.graphql --watchman false",
"build:css": "tailwind build src/styles.css -o dist/styles.css",
"watch:css": "chokidar 'src/styles.css' -c 'npm run build:css'"
},
"repository": {
"type": "git",
"url": "example.com"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^10.2.5",
"babel-loader": "^9.1.2",
"babel-plugin-relay": "^3.0.0",
"chokidar-cli": "^2.1.0",
"concurrently": "^5.3.0",
"expect-redux": "^4.0.5",
"express-graphql": "^0.7.1",
"faker": "^4.1.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-raw-loader": "^1.0.1",
"postcss": "^8.2.8",
"raw-loader": "^4.0.2",
"resolve-dir": "^1.0.1",
"supertest": "^3.4.2",
"tailwindcss": "^2.0.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-node-externals": "^1.7.2"
},
"jest": {
"testEnvironment": "jsdom",
"globals": {
"IS_REACT_ACT_ENVIRONMENT": true
},
"setupFilesAfterEnv": [
"./test/domMatchers.js",
"./test/globals.js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/server/"
],
"clearMocks": true,
"restoreMocks": true
},
"dependencies": {
"@babel/runtime": "^7.3.4",
"express": "^4.16.4",
"history": "^5.3.0",
"morgan": "^1.9.1",
"postcss-cli": "^8.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^7.2.9",
"react-router-dom": "^6.9.0",
"redux": "^4.2.1",
"redux-saga": "^1.2.3",
"whatwg-fetch": "^3.6.2"
},
"prettier": {
"singleQuote": true,
"printWidth": 67,
"jsxBracketSameLine": true
}
}