-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
51 lines (51 loc) · 1.43 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
{
"name": "cron-ui",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"dev": "webpack serve --mode=development --open",
"build": "export NODE_ENV=development && webpack --mode development",
"build:prod": "export NODE_ENV=production && webpack --mode production",
"lint": "eslint --cache ."
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@vue/compiler-sfc": "^3.0.7",
"autoprefixer": "^10.2.5",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^8.0.0",
"css-loader": "^5.1.2",
"eslint": "^7.21.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-vue": "^7.7.0",
"file-loader": "^6.2.0",
"husky": "^5.1.3",
"mini-css-extract-plugin": "^1.3.9",
"node-polyfill-webpack-plugin": "^1.0.3",
"postcss": "^8.2.8",
"postcss-loader": "^5.1.0",
"regenerator-runtime": "^0.13.7",
"style-loader": "^2.0.0",
"tailwindcss": "^2.0.3",
"url-loader": "^4.1.1",
"vue-loader": "^16.1.2",
"webpack": "^5.24.4",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"big.js": "^6.1.1",
"bn.js": "^5.2.0",
"cron-parser": "^3.4.0",
"near-api-js": "^0.44.2",
"vue": "^3.0.7"
}
}