-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
55 lines (55 loc) · 1.67 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
{
"name": "mappersguild",
"version": "0.0.0",
"private": true,
"scripts": {
"prod": "cross-env NODE_ENV=production node ./dist/api/app.js",
"build-src": "vite build",
"build-app": "cross-env NODE_ENV=production tsc --project api/tsconfig.json",
"dev": "run-p -rl watch-app watch-src",
"watch-app": "ts-node-dev --respawn --transpile-only --no-notify --project api/tsconfig.json api/app.ts",
"watch-src": "vite",
"serve": "vite preview",
"lint": "eslint . --ext .ts,.js,.vue",
"tsc": "tsc --noEmit true --project api/tsconfig.json"
},
"dependencies": {
"@popperjs/core": "^2.9.3",
"@types/node-fetch": "^2.6.6",
"axios": "^0.21.4",
"bootstrap": "^5.1.0",
"connect-mongo": "^3.2.0",
"cookie-parser": "^1.4.5",
"cross-env": "^7.0.3",
"eslint-config-prettier": "^8.5.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-session": "^1.17.2",
"markdown-it": "^13.0.1",
"mongodb": "^3.6.3",
"mongoose": "^5.13.15",
"morgan": "^1.10.0",
"node-cron": "^2.0.3",
"shopify-buy": "^2.21.1",
"vue": "^3.2.4",
"vue-router": "^4.0.11",
"vuex": "^4.0.2"
},
"devDependencies": {
"@types/bootstrap": "^5.1.2",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"@vitejs/plugin-vue": "^4.0.0",
"@vue/compiler-sfc": "^3.2.4",
"eslint": "^7.32.0",
"eslint-plugin-vue": "^7.16.0",
"npm-run-all": "^4.1.5",
"sass": "^1.38.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.3.5",
"vite": "^4.5.2",
"vue-tsc": "^0.2.3"
}
}