-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.24 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
{
"name": "whats-for-tea",
"version": "1.0.0",
"description": "A simple meal planner so you can answer the question \"what's for tea?\"",
"main": "src/index.js",
"scripts": {
"dev:client": "vite",
"build:client": "vite build",
"preview:client": "vite preview",
"dev:server": "nodemon src/app/index.js",
"server": "node src/server/index.js",
"create:equipment-item": "node scripts/create-equipment-item.js",
"create:ingredient": "node scripts/create-ingredient.js",
"create:measurement": "node scripts/create-measurement.js",
"setup:measurements": "node scripts/common-measurements.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "MIT",
"dependencies": {
"cors": "^2.8.5",
"ejs": "^3.1.8",
"express": "^4.18.2",
"mongoose": "^6.6.5",
"node-fetch": "^2.6.7",
"slug": "^8.2.2",
"vue": "^3.2.41",
"vue-router": "^4.1.5"
},
"devDependencies": {
"@vitejs/plugin-vue": "^3.1.2",
"@vitejs/plugin-vue-jsx": "^2.0.1",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.7.0",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"vite": "^3.1.8"
}
}