forked from thanhlmm/nms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 3.53 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
116
117
118
{
"name": "near-messaging-service",
"version": "0.0.1",
"license": "UNLICENSED",
"scripts": {
"build": "npm run build:contract && npm run build:web",
"build:contract": "node contract/compile.js",
"build:contract:debug": "node contract/compile.js --debug",
"build:web": "node copy-dev-account.js && vue-cli-service build",
"build-fe": "vue-cli-service build",
"dev:deploy:contract": "near dev-deploy",
"deploy:contract": "near deploy",
"deploy:pages": "gh-pages -d dist/",
"deploy": "npm run build && npm run deploy:contract && npm run deploy:pages",
"deploy:web": "npm run build:web && npm run deploy:pages",
"prestart": "npm run build:contract:debug && npm run dev:deploy:contract",
"start": "echo The app is starting! It will automatically open in your browser when ready && npm run serve",
"dev": "nodemon --watch contract -e ts --exec \"npm run start\"",
"test:web": "vue-cli-service test:unit",
"test": "npm run build:contract:debug && cd contract && npm run test && cd .. && vue-cli-service test:unit",
"serve": "node copy-dev-account.js && vue-cli-service serve --open",
"fe": "vue-cli-service serve --open",
"lint": "eslint . --ext .js --ext .vue --fix"
},
"dependencies": {
"@tiptap/extension-blockquote": "^2.0.0-beta.26",
"@tiptap/extension-code": "^2.0.0-beta.26",
"@tiptap/extension-code-block": "^2.0.0-beta.35",
"@tiptap/extension-font-family": "^2.0.0-beta.21",
"@tiptap/extension-highlight": "^2.0.0-beta.32",
"@tiptap/extension-link": "^2.0.0-beta.35",
"@tiptap/extension-subscript": "^2.0.0-beta.10",
"@tiptap/extension-superscript": "^2.0.0-beta.10",
"@tiptap/extension-task-item": "^2.0.0-beta.30",
"@tiptap/extension-task-list": "^2.0.0-beta.26",
"@tiptap/extension-text-style": "^2.0.0-beta.23",
"@tiptap/extension-underline": "^2.0.0-beta.22",
"@tiptap/starter-kit": "^2.0.0-beta.149",
"@tiptap/vue-2": "^2.0.0-beta.75",
"aes256": "^1.1.0",
"axios": "^0.24.0",
"core-js": "~3.12.1",
"dayjs": "^1.10.8",
"ipfs": "^0.60.0",
"near-api-js": "~0.43.1",
"node-rsa": "^1.1.1",
"remixicon": "^2.5.0",
"vue": "~2.6.11",
"vue-query": "^1.14.0",
"vue-router": "^3.5.3",
"vue-toastification": "^1.7.14",
"vuex": "^3.6.2",
"zlib": "^1.0.5"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.5.8",
"@vue/cli-plugin-unit-jest": "~4.5.4",
"@vue/cli-service": "~4.5.8",
"@vue/test-utils": "~1.2.0",
"env-cmd": "~10.1.0",
"eslint": "~7.26.0",
"eslint-plugin-vue": "~7.9.0",
"gh-pages": "~3.1.0",
"near-cli": "~2.1.1",
"near-sdk-as": "^3.2.3",
"node-sass": "^7.0.0",
"nodemon": "~2.0.4",
"sass": "^1.44.0",
"sass-loader": "10",
"shelljs": "~0.8.4",
"vue-template-compiler": "~2.6.11"
},
"eslintConfig": {
"ignorePatterns": [
"src/config.js",
"/tests/*.spec.js",
"copy-dev-account.js"
],
"env": {
"browser": true,
"es2020": true
},
"extends": [
"eslint:recommended",
"plugin:vue/essential"
],
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "module"
},
"plugins": [
"vue"
],
"rules": {
"indent": [
2,
2
],
"quotes": [
"off",
"double"
],
"no-undef": "off",
"vue/html-indent": [
"error",
2,
{
"alignAttributesVertically": true
}
]
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}