-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.74 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
{
"name": "tietokilta-web",
"private": true,
"version": "0.1.0",
"description": "A Strapi application",
"scripts": {
"develop": "strapi develop",
"start": "strapi start",
"start-with-config": "npm run config-restore && strapi start",
"build": "strapi build",
"strapi": "strapi",
"config-dump": "strapi configuration:dump -f strapiConfig.json",
"config-restore": "strapi configuration:restore -f strapiConfig.json",
"test": "jest --forceExit --detectOpenHandles",
"coverage": "jest --collectCoverage",
"lint": "eslint . --ext .js",
"lint:fix": "eslint . --ext .js --fix"
},
"devDependencies": {
"eslint": "^8.28.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^27.5.1",
"prettier": "^2.8.0",
"sqlite3": "^5.1.2",
"supertest": "^6.3.1"
},
"dependencies": {
"@strapi/plugin-color-picker": "^4.5.2",
"@strapi/plugin-graphql": "^4.5.2",
"@strapi/plugin-i18n": "^4.5.2",
"@strapi/plugin-users-permissions": "^4.5.2",
"@strapi/strapi": "^4.5.2",
"better-sqlite3": "7.4.6",
"pg": "^8.8.0",
"strapi-plugin-navigation": "^2.2.2",
"strapi-plugin-populate-deep": "^1.1.2",
"strapi-plugin-publish-changes": "file:src/plugins/publish-changes",
"strapi-provider-upload-azure-storage": "^2.1.0"
},
"author": {
"name": "A Strapi developer"
},
"strapi": {
"uuid": "f32c58af-68af-41d6-9877-711d8953de28"
},
"engines": {
"node": "^16.0.0",
"npm": "^8.0.0"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
".tmp",
".cache"
],
"testEnvironment": "node"
},
"license": "MIT"
}