-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
95 lines (95 loc) · 3.34 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
{
"name": "frontend-application",
"version": "1.0.0",
"description": "ALIS Media - Frontend Application",
"author": "y-temp4 <[email protected]>",
"private": true,
"scripts": {
"dev": "NODE_OPTIONS='--openssl-legacy-provider' cross-env NODE_ENV=development HOST=0.0.0.0 nuxt --config-file nuxt.config.development.js",
"debug": "NODE_OPTIONS='--openssl-legacy-provider' cross-env NODE_ENV=development HOST=0.0.0.0 nuxt --config-file nuxt.config.debug.js",
"start": "nuxt start",
"generate": "nuxt generate",
"format": "prettier-eslint --write \"./**/*.{js,vue}\" --ignore \"./node_modules/**\" ",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint-fix": "eslint --fix --ext .js,.vue --ignore-path .gitignore .",
"lf": "yarn lint-fix && yarn format",
"precommit": "npm run lint",
"build": "./build.sh",
"build:ci": "./build.sh ci",
"deploy": "./deploy.sh",
"bd": "yarn build && yarn deploy && yarn",
"sls:deploy": "sls deploy",
"test": "jest --config jest.config.js --verbose --no-cache",
"test:coverage": "jest --config jest.config.js --no-cache --coverage",
"cilint": "circleci config validate -c .circleci/config.yml"
},
"dependencies": {
"@alisproject/alis-editor": "0.3.22",
"@ckeditor/ckeditor5-dev-utils": "^25.4.2",
"@johmun/vue-tags-input": "^2.1.0",
"@nuxtjs/axios": "^5.9.3",
"@nuxtjs/markdownit": "^2.0.0",
"@nuxtjs/robots": "^2.5.0",
"@nuxtjs/sentry": "^4.0.0",
"@nuxtjs/sitemap": "^2.4.0",
"@nuxtjs/style-resources": "^1.0.0",
"amazon-cognito-identity-js": "^3.0.7",
"aws-sdk": "^2.814.0",
"aws-serverless-express": "^3.3.5",
"bignumber.js": "^8.1.1",
"blueimp-load-image": "^2.26.0",
"cheerio": "1.0.0-rc.10",
"crypto-js": "^4.0.0",
"dayjs": "^1.8.9",
"ethereumjs-common": "^1.5.0",
"ethereumjs-tx": "^2.1.2",
"express": "^4.16.4",
"highlight.js": "^10.4.1",
"lazysizes": "^5.2.2",
"lodash": "^4.17.21",
"medium-editor": "^5.23.3",
"node-fetch": "^2.6.7",
"normalize.css": "^8.0.1",
"nuxt": "^2.15.8",
"nuxt-dropzone": "^1.0.4",
"probe-image-size": "^7.2.3",
"sass-loader": "^10.2.0",
"serverless-plugin-aws-alerts": "1.7.5",
"serverless-prune-plugin": "^1.3.2",
"sjcl": "^1.0.8",
"smoothscroll-polyfill": "^0.4.3",
"url-regex": "^4.1.1",
"vue-easytable": "^2.25.0",
"vue-numeric-input": "^1.0.6",
"vuelidate": "^0.7.5",
"vuex-toast": "^0.1.3"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/eslint-parser": "^7.19.1",
"@babel/eslint-plugin": "^7.11.5",
"@babel/preset-react": "^7.18.6",
"@nuxtjs/eslint-config": "^0.0.1",
"@vue/test-utils": "^1.0.0-beta.29",
"axios-mock-adapter": "^1.16.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^27.1.0",
"cross-env": "^5.2.0",
"eslint": "5.14.1",
"eslint-config-standard": "12.0.0",
"eslint-loader": "2.1.2",
"eslint-plugin-import": "2.16.0",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-node": "8.0.1",
"eslint-plugin-promise": "4.0.1",
"eslint-plugin-standard": "4.0.0",
"eslint-plugin-vue": "5.2.2",
"jest": "^27.1.0",
"jest-transform-stub": "^2.0.0",
"node-sass": "^6.0.1",
"prettier": "1.16.4",
"prettier-eslint": "8.8.2",
"prettier-eslint-cli": "^5.0.0",
"vue-jest": "^3.0.5"
}
}