generated from wrappid/wrappid-module
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
77 lines (77 loc) · 2.28 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
{
"name": "data-management-module",
"version": "0.0.2",
"description": "This is data-management module Wrappid Project.",
"main": "index.js",
"scripts": {
"prepare": "husky install",
"attributions:gen": "node ./scripts/attributions.gen.js",
"code:lint": "eslint -c .eslintrc.js --ignore-path .gitignore .",
"code:format": "npm run code:lint:app -- --fix",
"code:lint:app": "eslint -c .eslintrc.js --ignore-path .gitignore ./app",
"code:format:app": "npm run code:lint:app -- --fix",
"code:lint:service": "eslint -c .eslintrc.js --ignore-path .gitignore service",
"code:format:service": "npm run code:lint:service -- --fix",
"test": "jest",
"release": "standard-version --bumpFiles ./package.json ./package-lock.json "
},
"license": "MIT",
"author": {
"name": "Wrappid",
"email": "wrappid.framework@gmail.com",
"url": "https://www.github.com/wrappid"
},
"homepage": "https://github.com/wrappid/wrappid-module",
"repository": {
"type": "git",
"url": "git:https://github.com/wrappid/wrappid-module.git"
},
"keywords": [
"wrappid",
"module",
"react",
"react-native",
"template"
],
"devDependencies": {
"@commitlint/cli": "17.5.0",
"@commitlint/config-conventional": "17.4.4",
"@commitlint/prompt-cli": "17.5.0",
"@faker-js/faker": "8.1.0",
"@wrappid/core": "latest",
"@wrappid/service-core": "latest",
"@wrappid/styles": "latest",
"eslint": "8.40.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-etc": "2.0.2",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-require-extensions": "0.1.3",
"eslint-plugin-sort-keys-fix": "1.1.2",
"eslint-plugin-unused-imports": "2.0.0",
"husky": "8.0.3",
"jest": "27.5.1",
"license-checker": "25.0.1",
"react-redux": "8.0.5",
"standard-version": "9.5.0",
"supertest": "6.3.3",
"yup": "1.3.3"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.{js,jsx,ts}",
"!**/node_modules/**"
],
"coverageThreshold": {
"global": {
"branches": 0,
"functions": 0,
"lines": 0,
"statements": 0
}
}
}
}