-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
67 lines (67 loc) · 1.77 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
{
"name": "@ergonode/vuems",
"version": "1.1.0",
"description": "A simple mechanism to transform a monolithic Vue application into an application based on Micro Services architecture.",
"author": "Bletek Piotr <p.bletek@gmail.com>",
"license": "OSL-3.0",
"repository": {
"type": "git",
"url": "git://github.com/ergonode/vuems.git"
},
"homepage": "https://github.com/ergonode/vuems",
"bugs": {
"url": "https://github.com/ergonode/vuems/issues"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"main": "src/index.js",
"scripts": {
"lint": "eslint --ext .js .",
"lint:dev": "npm run lint -- --cache",
"test:dev": "npm run test -- --coverage --u --passWithNoTests",
"test": "npm run lint && jest --no-cache --passWithNoTests"
},
"engines": {
"node": ">= 12.0.0",
"npm": ">= 5.0.0"
},
"files": [
"src/*"
],
"keywords": [
"javascript",
"node",
"npm",
"vue",
"vuejs",
"nuxt",
"nuxtjs",
"micro services",
"micro frontend",
"framework"
],
"dependencies": {
"consola": "^2.15.3",
"deepmerge": "^4.2.2",
"fs-extra": "^10.0.0",
"recursive-readdir-async": "^1.2.0"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/eslint-parser": "^7.16.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"babel-plugin-dynamic-import-node": "^2.3.3",
"eslint": "^8.6.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-notice": "^0.9.10",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"prettier": "^2.5.1"
}
}