-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
77 lines (77 loc) · 2.54 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": "aggregated-public-information",
"version": "0.1.0",
"private": true,
"description": "A Strapi application",
"license": "MIT",
"author": {
"name": "A Strapi developer"
},
"scripts": {
"build": "rm -r ./dist && strapi build",
"develop": "strapi develop",
"start": "strapi start",
"strapi": "strapi",
"tsc": "tsc --project tsconfig.json --noEmit",
"test": "DATABASE_FILENAME=\".tmp/test_data.db\" jest --forceExit --detectOpenHandles --silent",
"test:with-build": "yarn build && yarn test",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier . --check",
"format:fix": "prettier . --write",
"check:types": "yarn tsc",
"check:lint": "yarn lint",
"check:format": "yarn format",
"check:build": "yarn build",
"check:test": "yarn test",
"check:all": "yarn check:types && yarn check:lint && yarn check:format && yarn check:build && yarn check:test",
"script:import-product-info-sheet": "esrun src/scripts/import-product-info-sheet/ dotenv_config_path=./src/scripts/.env",
"script:import-needs-assessment-data": "esrun src/scripts/import-needs-assessment-data/ dotenv_config_path=./src/scripts/.env",
"script:import-sdr-shipments-sheet": "esrun src/scripts/import-sdr-shipments-sheet/ dotenv_config_path=./src/scripts/.env"
},
"dependencies": {
"@strapi/plugin-documentation": "5.3.0",
"@strapi/plugin-users-permissions": "5.3.0",
"@strapi/provider-upload-aws-s3": "5.3.0",
"@strapi/strapi": "^5.0.0-rc.9",
"better-sqlite3": "^11.0.0",
"pg": "^8.11.3",
"pg-connection-string": "^2.6.2",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-router-dom": "^6.0.0",
"strapi-plugin-slugify": "^2.3.5",
"styled-components": "^6.0.0"
},
"engines": {
"node": ">=20.0.0 <=22.12.0",
"npm": ">=6.0.0"
},
"strapi": {
"uuid": "679cf8f5-e045-4f0a-afc2-5bc6713ebdf0"
},
"packageManager": "yarn@4.6.0",
"devDependencies": {
"@eslint/js": "^9.8.0",
"@types/eslint": "^9",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.12",
"@types/lodash": "^4",
"@types/node": "^22",
"@types/qs": "^6",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/supertest": "^6.0.2",
"country-code-lookup": "^0.1.3",
"csvtojson": "^2.0.10",
"eslint": "~9.15.0",
"esrun": "^3.2.26",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"qs": "^6.13.0",
"supertest": "^7.0.0",
"ts-jest": "^29.2.4",
"typescript": "^5.5.4",
"typescript-eslint": "^8.15.0"
}
}