forked from mverissimo/emotion-grid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 3.25 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@mverissimoo/emotion-grid",
"version": "1.0.0",
"main": "dist/emotion-grid.cjs.js",
"module": "dist/emotion-grid.esm.js",
"types": "dist/emotion-grid.cjs.d.ts",
"repository": "[email protected]:mverissimo/emotion-grid.git",
"author": "Matheus Verissimo <[email protected]>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"files": [
"dist/"
],
"sideEffects": false,
"scripts": {
"commit": "git-cz",
"docz:dev": "docz dev",
"docz:build": "docz build",
"docz:serve": "docz build && docz serve",
"lint": "eslint src --ext .ts,.tsx",
"lint:ci": "yarn lint --format junit -o reports/eslint/results.json",
"lint:fix": "yarn lint --fix",
"test": "jest --watch",
"test:ci": "jest --ci --coverage --runInBand --json --outputFile=reports/jest/results.json",
"build": "NODE_ENV=production preconstruct build",
"prepublishOnly": "yarn build",
"release": "semantic-release",
"prepare": "husky install"
},
"preconstruct": {
"globals": {
"react": "React",
"react-dom": "ReactDOM",
"@emotion/styled": "styled",
"@emotion/react": "css"
},
"distFilenameStrategy": "unscoped-package-name"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged ",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"devDependencies": {
"@babel/preset-env": "7.14.0",
"@babel/preset-typescript": "7.13.0",
"@commitlint/cli": "12.1.1",
"@commitlint/config-conventional": "12.1.1",
"@emotion/babel-plugin": "^11.3.0",
"@emotion/babel-preset-css-prop": "^11.2.0",
"@emotion/eslint-plugin": "^11.2.0",
"@emotion/jest": "^11.3.0",
"@preconstruct/cli": "2.0.7",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "8.0.1",
"@semantic-release/github": "7.2.1",
"@semantic-release/npm": "7.1.1",
"@semantic-release/release-notes-generator": "9.0.2",
"@testing-library/jest-dom": "5.12.0",
"@testing-library/react": "11.2.6",
"@types/jest": "26.0.23",
"@typescript-eslint/eslint-plugin": "4.22.0",
"@typescript-eslint/parser": "4.22.0",
"babel-eslint": "10.1.0",
"babel-jest": "26.6.3",
"babel-plugin-lodash": "^3.3.4",
"cz-conventional-changelog": "3.3.0",
"docz": "2.3.1",
"eslint": "7.25.0",
"eslint-config-react-app": "6.0.0",
"eslint-plugin-flowtype": "5.7.2",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-react": "7.23.2",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-testing-library": "4.1.2",
"husky": "^6.0.0",
"jest": "26.6.3",
"lint-staged": "10.5.4",
"prettier": "2.2.1",
"pretty-quick": "3.1.0",
"semantic-release": "17.4.2",
"stylelint": "13.13.1",
"ts-jest": "26.5.5",
"typescript": "4.2.4"
},
"dependencies": {
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.3.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}