-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
65 lines (65 loc) · 1.97 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
{
"name": "mattie-strapi-bundle",
"private": true,
"description": "Mono repo for the mattie-strapi-bundle",
"workspaces": [
"packages/*",
"packages/*/*",
"example"
],
"scripts": {
"setup": "yarn && yarn lerna bootstrap",
"build": "lerna run --stream build",
"develop": "ENV_PATH=../.env yarn --cwd example develop",
"console": "ENV_PATH=../.env yarn --cwd example strapi console",
"start": "ENV_PATH=../.env yarn --cwd example start",
"lint": "eslint . --fix",
"format": "npm-run-all -p format:*",
"format:code": "yarn prettier \"**/*.js\" --write",
"format:other": "yarn prettier \"**/*.{md,css,scss,yaml,yml}\" --write",
"test": "NODE_ENV=testing yarn test:unit",
"test:unit": "jest --forceExit"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/eslint-parser": "^7.15.0",
"@strapi/strapi": "4.0.6",
"eslint": "^8.6.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsdoc": "^37.5.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-redux-saga": "^1.3.2",
"jest": "^27.4.7",
"lerna": "^4.0.0",
"lint-staged": "^12.1.5",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"supertest": "^6.1.3"
},
"author": {
"name": "Mattias van den Belt",
"email": "[email protected]",
"url": "https://github.com/MattieBelt"
},
"homepage": "https://github.com/MattieBelt/mattie-strapi-bundle",
"repository": "github:MattieBelt/mattie-strapi-bundle",
"bugs": "https://github.com/MattieBelt/mattie-strapi-bundle/issues",
"lint-staged": {
"*.{js,md,css,scss,yaml,yml}": [
"prettier --write"
],
"*.js": [
"eslint --fix"
]
},
"engines": {
"node": ">=12.9.x <=16.x.x",
"npm": ">=6.0.0"
},
"license": "SEE LICENSE IN LICENSE"
}