-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 2.56 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
{
"name": "react-sceleto",
"version": "1.9.0",
"description": "Sample file structure for React projects.",
"scripts": {
"start": "webpack --mode development --watch --progress",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write './**/*.{js,jsx,json}'",
"format:php": "prettier",
"stylelint": "stylelint './src/**/*.{css,scss}'",
"stylelint:fix": "stylelint './src/**/*.{css,scss}' --fix",
"test": "jest --detectOpenHandles --forceExit",
"test:watch": "jest --watch",
"test:phpunit": "./vendor/bin/phpunit --colors=always",
"e2e": "cypress open",
"e2e:headless": "cypress run",
"increment-build": "node buildIncrementer.js",
"build": "yarn increment-build && webpack --mode production --progress",
"release": "git pull && yarn build && git add . && git commit -m 'build to production' --no-verify && git push",
"sync:cecilia-css": "rsync -r -t --progress --delete ../cecilia-css/ ./node_modules/cecilia-css/",
"sync:ubiquitous-components": "rsync -r -t --progress --delete ../ubiquitous-components/lib/ ./node_modules/ubiquitous-components/lib/ && yarn start",
"sync:verum-php": "rsync -r -t --progress --delete ../verum-php/src/ ./vendor/sandromiguel/verum-php/src/",
"upgrade-deps": "yarn upgrade-interactive --latest",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog",
"disableScopeLowerCase": true
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/SandroMiguel/react-sceleto.git"
},
"keywords": [
"react",
"directory",
"structure",
"skeleton"
],
"author": "Sandro Miguel Marques",
"license": "MIT",
"bugs": {
"url": "https://github.com/SandroMiguel/react-sceleto/issues"
},
"homepage": "https://github.com/SandroMiguel/react-sceleto#readme",
"devDependencies": {
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-cecilia": "^2.10.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.2.3",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unicorn": "^52.0.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"standard-version": "^9.5.0"
}
}