-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
99 lines (99 loc) · 3.32 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
{
"name": "@geesome/ui",
"version": "0.1.0",
"scripts": {
"start": "yarn --no-optional && npm run dev",
"dev": "./node_modules/.bin/parcel ./index.html",
"build": "PYTHON=python yarn --no-optional && rm -rf ./dist && node --max-old-space-size=8192 ./node_modules/.bin/parcel build ./index.html --no-content-hash --no-optimize --dist-dir ./dist --reporter @parcel/reporter-bundle-analyzer && node ./run-terser.js && cp package.json ./dist/",
"build-and-publish": "npm run build && npm publish ./dist --access public",
"build-new-ver": "touch dist/package.json > /dev/null 2>&1; DIST_VERSION=$(node -p -e \"require('./dist/package.json').version\"); CUR_VERSION=$(node -p -e \"require('./package.json').version\"); if [ \"$DIST_VERSION\" != \"$CUR_VERSION\" ]; then npm run build; fi",
"serve": "./node_modules/.bin/http-server ./dist"
},
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
},
"author": "Galt Project Core Team",
"license": "ISC",
"dependencies": {
},
"devDependencies": {
"@galtproject/vue-locale": "0.1.10",
"@parcel/reporter-bundle-analyzer": "2.5.0",
"@parcel/transformer-image": "2.5.0",
"@parcel/transformer-sass": "2.5.0",
"@swc/helpers": "^0.2.13",
"async": "^2.6.4",
"axios": "^0.21.2",
"bluebird": "^3.5.2",
"default-passive-events": "^1.0.7",
"dexie": "^3.2.2",
"ethers": "^3.0.27",
"file-saver": "^2.0.2",
"font-awesome": "https://github.com/FortAwesome/Font-Awesome",
"geesome-libs": "https://github.com/galtproject/geesome-libs#bd48910",
"ipfs-http-client": "52.0.3",
"geesome-vue-components": "https://github.com/galtproject/geesome-vue-components#588a58c",
"is-ipfs": "^0.4.7",
"javascript-obfuscator": "^0.18.1",
"js-yaml": "^3.13.1",
"latlon-geohash": "^1.1.0",
"lodash": "^4.17.21",
"marked": "^4.0.10",
"mediaelement": "^4.2.9",
"mime": "^2.5.2",
"moment": "^2.29.4",
"object-hash": "^1.3.1",
"p-iteration": "^1.1.7",
"parcel": "2.5.0",
"qrcode": "^1.5.1",
"speed-measure-webpack-plugin": "^1.5.0",
"terser": "^5.14.2",
"url-search-params-polyfill": "^5.1.0",
"vue": "2.6.11",
"vue-drag-drop": "^0.2.3",
"vue-material": "^1.0.0-beta-10.2",
"vue-multiselect": "^2.1.0",
"vue-notification": "^1.3.4",
"vue-router": "^3.0.1",
"vue-template-compiler": "^2.5.13",
"vue2-editor": "^2.6.6",
"vuex": "3.1.0",
"@babel/core": "^7.15.5",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-syntax-bigint": "^7.8.3",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@types/chai": "^4.1.3",
"@types/mocha": "^5.2.2",
"@types/node": "^8.10.17",
"assert": "^2.0.0",
"autoprefixer": "^10.3.6",
"buffer": "^5.1.0",
"chai": "^4.1.2",
"crypto-browserify": "^3.12.0",
"dotenv": "^6.0.0",
"http-server": "^0.10.0",
"mocha": "^5.2.0",
"node-sass": "9.0.0",
"postcss": "^8.1.0",
"stream-browserify": "^3.0.0",
"string_decoder": "^1.3.0",
"tslint": "^5.18.0",
"typescript": "^4.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"browserify": {
"transform": [
"babelify"
]
},
"alias": {
"vue": "./node_modules/vue/dist/vue.common.js"
}
}