forked from ns23/strapi-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.14 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
{
"name": "ithra-tickets-cms",
"private": true,
"version": "0.1.0",
"description": "Backend CMS for ithra ticketing",
"scripts": {
"develop": "strapi develop",
"start": "strapi start",
"build": "strapi build",
"strapi": "strapi",
"eslint-fix": "eslint . --fix",
"eslint": "eslint .",
"lint": "prettier --check .",
"format": "prettier --write .",
"test": "jest --forceExit --detectOpenHandles",
"coverage": "jest --coverage --forceExit --detectOpenHandles"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.20.0",
"eslint-config-google": "^0.14.0",
"husky": "^5.1.1",
"is-windows": "^1.0.2",
"jest": "^26.6.3",
"jest-mock-axios": "^4.3.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"sqlite3": "^5.0.2",
"supertest": "^6.1.3"
},
"dependencies": {
"axios": "^0.21.1",
"knex": "<0.20.0",
"pg": "^8.5.1",
"strapi": "3.5.1",
"strapi-admin": "3.5.1",
"strapi-connector-bookshelf": "3.5.1",
"strapi-plugin-content-manager": "3.5.1",
"strapi-plugin-content-type-builder": "3.5.1",
"strapi-plugin-documentation": "3.5.1",
"strapi-plugin-email": "3.5.1",
"strapi-plugin-graphql": "^3.5.1",
"strapi-plugin-upload": "3.5.1",
"strapi-plugin-users-permissions": "3.5.1",
"strapi-utils": "3.5.1"
},
"author": {
"name": "Ten twenty"
},
"strapi": {
"uuid": ""
},
"engines": {
"node": ">=10.16.0 <=14.x.x",
"npm": "^6.0.0"
},
"license": "MIT",
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
".tmp",
".cache"
],
"testEnvironment": "node",
"collectCoverage": false,
"collectCoverageFrom": [
"api/**/*.js",
"config/functions/**/*.js",
"config/policies/**/*.js",
"extensions/**/*.js"
],
"coverageThreshold": {
"global": {
"branches": 70,
"functions": 70,
"lines": 70,
"statements": 70
}
}
}
}