-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.62 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": "forum_vue",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"deploy:backend": "git push heroku `git subtree split --prefix packages/backend master`:master",
"deploy:frontend": "cd packages/frontend && yarn build && gh-pages -d build",
"lint": "tsc --noEmit && eslint . --ext js,ts,tsx",
"start:backend": "cd packages/backend && yarn start",
"start:frontend": "cd packages/frontend && yarn start",
"start": "run-p -l start:*"
},
"dependencies": {
"@ckeditor/ckeditor5-build-classic": "^34.1.0",
"@ckeditor/ckeditor5-vue2": "^3.0.1",
"@hcaptcha/vue-hcaptcha": "^0.3.2",
"axios": "^0.27.2",
"body-parser": "^1.20.0",
"bootstrapt": "^1.2.0",
"core-js": "^3.8.3",
"cors": "^2.8.5",
"crypto-browserify": "^3.12.0",
"crypto-js": "^4.1.1",
"ethers": "^5.6.9",
"express": "^4.18.1",
"mongoose": "^6.4.2",
"net": "^1.0.2",
"node-polyfill-webpack-plugin": "^2.0.0",
"pm2": "^5.2.0",
"stream": "^0.0.2",
"vue": "^2.6.14",
"vue-axios": "^3.4.1",
"vue-connect-wallet": "0.1.5",
"vue-metamask": "^2.2.1",
"vue-router": "^3.5.1",
"vuetify": "^2.6.0",
"vuex": "^3.6.2"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~5.0.0",
"@vue/cli-plugin-router": "~5.0.0",
"@vue/cli-plugin-vuex": "~5.0.0",
"@vue/cli-service": "~5.0.0",
"sass": "^1.32.7",
"sass-loader": "^12.0.0",
"vue-cli-plugin-vuetify": "~2.5.1",
"vue-template-compiler": "^2.6.14",
"vuetify-loader": "^1.7.0"
},
"browser": {
"crypto": false
}
}