This repository has been archived by the owner on Feb 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
154 lines (154 loc) · 3.9 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
{
"name": "cosmos-network",
"version": "1.2.0",
"private": true,
"description": "The website for Cosmos, Internet of Blockchains",
"author": "All In Bits, Inc <inquiries@tendermint.com>",
"scripts": {
"prebuild:site": "./pre.sh",
"build:site": "vue-cli-service build",
"postbuild:site": "./post.sh",
"preserve": "./pre.sh",
"serve": "trap 'exit 0' SIGINT; vue-cli-service serve",
"postserve": "./post.sh",
"test:unit": "vue-cli-service test:unit",
"build": "npm run build:site",
"lint": "vue-cli-service lint && npm run lint:json && npm run lint:md",
"lint:json": "prettier \"**/*.json\" --write",
"lint:md": "prettier \"**/*.md\" --write && remark . && textlint \"docs/**\" && textlint \"content/**\""
},
"dependencies": {
"@cosmos-ui/vue": "^0.36.3",
"airtable": "^0.10.1",
"algoliasearch": "^4.6.0",
"axios": "^0.21.1",
"cookieconsent": "^3.1.0",
"disable-scroll": "0.4.0",
"headroom.js": "^0.9.4",
"intersection-observer": "0.5.0",
"jarallax": "1.10.6",
"js-cookie": "2.2.0",
"jsonp": "^0.2.1",
"markdown-it": "8.4.1",
"markdown-it-anchor": "4.0.0",
"markdown-it-table-of-contents": "0.3.3",
"moment": "2.22.1",
"moment-timezone": "^0.5.31",
"nib": "1.1.2",
"perfect-scrollbar": "1.3.0",
"pug": "^3.0.2",
"pug-plain-loader": "1.0.0",
"querystring": "^0.2.0",
"register-service-worker": "1.5.2",
"rss-parser": "3.1.2",
"scroll-to": "0.0.2",
"swagger-ui": "3.25.0",
"twix": "1.2.1",
"v-tooltip": "^2.0.3",
"vue": "^2.6.10",
"vue-gtm": "^2.2.0",
"vue-instantsearch": "^3.4.2",
"vue-markdown-loader": "2.4.1",
"vue-meta": "1.5.8",
"vue-router": "3.0.1",
"vue-scrollto": "2.11.0",
"vuex": "3.0.1",
"vuex-router-sync": "5.0.0",
"yamljs": "0.3.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "3.3.0",
"@vue/cli-plugin-eslint": "3.3.0",
"@vue/cli-plugin-pwa": "3.3.0",
"@vue/cli-plugin-unit-jest": "3.3.0",
"@vue/cli-service": "3.3.0",
"@vue/eslint-config-prettier": "4.0.1",
"@vue/test-utils": "1.0.0-beta.20",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.1",
"babel-jest": "23.6.0",
"eslint": "5.8.0",
"eslint-plugin-vue": "5.0.0",
"lint-staged": "8.1.0",
"mjml": "^4.5.1",
"raw-loader": "^3.1.0",
"remark-cli": "5.0.0",
"remark-lint-no-dead-urls": "0.3.0",
"stylus": "0.54.5",
"stylus-loader": "3.0.2",
"textlint": "10.2.1",
"textlint-rule-no-dead-link": "^4.7.0",
"textlint-rule-stop-words": "1.0.3",
"tiny-cookie": "^2.3.1",
"vue-lazyload": "1.2.6",
"vue-template-compiler": "^2.6.10"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"@vue/prettier"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"jest": {
"moduleFileExtensions": [
"js",
"jsx",
"json",
"vue"
],
"transform": {
"^.+\\.vue$": "vue-jest",
".+\\.(css|styl|less|sass|scss|svg|png|jpg|ttf|woff|woff2)$": "jest-transform-stub",
"^.+\\.jsx?$": "babel-jest"
},
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
},
"snapshotSerializers": [
"jest-serializer-vue"
],
"testMatch": [
"**/tests/unit/**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx)"
],
"testURL": "http://localhost/"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"vue-cli-service lint",
"git add"
],
"*.vue": [
"vue-cli-service lint",
"git add"
]
},
"prettier": {
"semi": false
},
"remarkConfig": {
"plugins": [
"remark-lint-no-dead-urls"
]
}
}