forked from catchain/tonscan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.36 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
{
"private": true,
"name": "tonscan",
"main": "./src/js/app.js",
"description": "tonscan.org explorer",
"author": "catchain",
"version": "0.0.1",
"scripts": {
"dev": "npm run development",
"development": "NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --config=webpack.config.js",
"watch": "npm run development -- --watch",
"watch-poll": "npm run watch -- --watch-poll",
"prod": "npm run production",
"production": "NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --config=webpack.config.js",
"prod_testnet": "TESTNET=1 npm run production",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"axios": "^0.24.0",
"axios-retry": "^3.2.4",
"qrcode.vue": "^1.7.0",
"timeago.js": "^4.0.2",
"vue": "^2.6.14",
"vue-clipboard2": "^0.3.3",
"vue-i18n": "^8.26.8",
"vue-mugen-scroll": "^0.2.6",
"vue-router": "^3.5.3",
"vuex": "^3.6.2"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.16.10",
"@babel/preset-env": "^7.16.11",
"@symfony/webpack-encore": "^1.8.1",
"dotenv": "^8.2.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"sass": "^1.49.0",
"sass-loader": "^12.4.0",
"vue-loader": "^15.9.8",
"vue-template-compiler": "^2.6.11"
},
"engines": {
"node": ">=17.0.0"
}
}