-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.73 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.73 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
{
"name": "code-and-coffee-service",
"private": true,
"version": "0.0.0",
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"serve:ui": "vite",
"serve:api": "serverless offline --stage local",
"nodemon:api": "nodemon --exec npm run build:api",
"build": "npm run build:ui && npm run build:api",
"build:ui": "vite build",
"build:api": "rollup -c",
"fix": "npx prettier --write . && npx eslint . --fix",
"mockoon-start": "mockoon-cli start --data ./mockoon.json --daemon-off"
},
"devDependencies": {
"@mockoon/cli": "^2.4.0",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"@types/aws-lambda": "^8.10.111",
"@types/jest": "^29.4.4",
"@types/node": "^20.1.2",
"@types/nodemailer": "^6.4.8",
"@types/react": "^18.0.28",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "^8.37.0",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"prettier": "2.8.4",
"rollup": "^3.19.1",
"serverless-offline": "^12.0.4",
"serverless-plugin-typescript": "^2.1.4",
"ts-jest": "^29.0.5",
"tslib": "^2.5.0",
"typescript": "^4.9.5",
"vite": "^4.1.0"
},
"dependencies": {
"@fluentui/react-icons": "^2.0.196",
"@types/react-dom": "^18.0.11",
"chalk": "^5.2.0",
"colors": "^1.4.0",
"form-data": "^4.0.0",
"google-auth-library": "^8.8.0",
"googleapis": "^118.0.0",
"nodemailer": "^6.9.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"styled-components": "^5.3.9"
}
}