-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
115 lines (115 loc) · 3.18 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "capsule-vue",
"productName": "Blogchain Client",
"version": "1.0.0",
"description": "Blogchain Client",
"author": {
"name": "Capsule Social",
"email": "[email protected]",
"url": "https://capsule.social"
},
"private": true,
"license": "GNU GENERAL PUBLIC LICENSE",
"sideEffects": [
"*.css",
"*.vue"
],
"build": {
"files": [
"**/*",
"!**/node_modules/*/{CHANGELOG.md,README.md,README,readme.md,readme}",
"!**/node_modules/*/{test,__tests__,tests,powered-test,example,examples}",
"!**/node_modules/*.d.ts",
"!**/node_modules/.bin",
"!**/*.{iml,o,hprof,orig,pyc,pyo,rbc,swp,csproj,sln,xproj}",
"!.editorconfig",
"!**/._*",
"!**/{.DS_Store,.git,.hg,.svn,CVS,RCS,SCCS,.gitignore,.gitattributes}",
"!**/{__pycache__,thumbs.db,.flowconfig,.idea,.vs,.nyc_output}",
"!**/{appveyor.yml,.travis.yml,circle.yml}",
"!**/{npm-debug.log,yarn.lock,.yarn-integrity,.yarn-metadata.json}",
"!**/.nuxt/**",
"!**/build/**",
"!**/mainprocess/**",
"!**/src/**",
"!main.mainprocess.js",
"!main.dev.js",
"!main.dev.js.map",
"!webpack.config.js",
"!.gitignore",
"!nuxt.config.js",
"!package-lock.json",
"!README.md"
]
},
"scripts": {
"web": "nuxt -m=client",
"start": "nuxt start",
"build:web": "nuxt build -m=client",
"lint": "yarn eslint -c .eslintrc.js --ext .ts,.js,.vue ./src",
"lint-fix": "yarn eslint -c .eslintrc.js --fix --ext .ts,.js,.vue ./src",
"postinstall": "husky install"
},
"dependencies": {
"@braintree/sanitize-url": "^6.0.0",
"@capsulesocial/capsule-config": "^1.2.6",
"@capsulesocial/ipfs-wrapper": "1.0.1",
"@nuxtjs/dotenv": "^1.4.1",
"@nuxtjs/robots": "^2.5.0",
"@stripe/stripe-js": "^1.36.0",
"@tailwindcss/typography": "^0.4.1",
"@toruslabs/customauth": "^10.1.1",
"@toruslabs/openlogin-ed25519": "^2.0.0",
"axios": "^0.27.2",
"browser-image-compression": "^2.0.0",
"dompurify": "^2.4.0",
"highlight.js": "^11.6.0",
"json-stable-stringify": "^1.0.1",
"libsodium-wrappers": "^0.7.10",
"lodash": "^4.17.21",
"marked": "^4.1.0",
"near-api-js": "^1.0.0",
"nuxt": "^2.15.8",
"portal-vue": "^2.1.7",
"quill": "^1.3.7",
"quilljs-markdown": "^1.2.0",
"scrypt-js": "^3.0.1",
"toastify-js": "^1.12.0",
"turndown": "^7.1.1",
"turndown-plugin-gfm": "^1.0.2",
"vuex-persist": "^3.1.3"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@hcaptcha/types": "^1.0.2",
"@nuxt/image": "^0.7.1",
"@nuxt/types": "^2.15.8",
"@nuxt/typescript-build": "^2.1.0",
"@nuxtjs/eslint-config-typescript": "^11.0.0",
"@nuxtjs/tailwindcss": "^4.2.1",
"@types/dompurify": "^2.3.4",
"@types/json-stable-stringify": "^1.0.34",
"@types/libsodium-wrappers": "^0.7.9",
"@types/lodash": "^4.14.185",
"@types/marked": "^4.0.7",
"@types/quill": "^2.0.9",
"@types/toastify-js": "^1.11.1",
"@types/turndown": "^5.0.1",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier-vue": "^4.2.0",
"husky": "^8.0.1",
"prettier": "^2.7.1",
"ts-loader": "^8.3.0",
"typescript": "^4.8.3"
},
"resolutions": {
"bn.js": "^5.2.1"
},
"browserslist": [
"last 2 versions",
"not dead",
"not IE 11"
]
}