-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
104 lines (104 loc) · 3.07 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
{
"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",
"test:ci": "jest --ci --coverage --runInBand --json --outputFile=reports/jest/results.json",
"typescript": "tsc --noEmit",
"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"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"resolutions": {
"get-pkg-repo": "4.1.1",
"hosted-git-info": "^2.1.4"
},
"dependencies": {
"@emotion/is-prop-valid": "^1.1.3"
},
"devDependencies": {
"@babel/eslint-parser": "^7.18.2",
"@babel/preset-env": "7.18.6",
"@babel/preset-typescript": "7.18.6",
"@commitlint/cli": "17.0.3",
"@commitlint/config-conventional": "17.0.3",
"@emotion/babel-plugin": "^11.9.2",
"@emotion/eslint-plugin": "^11.7.0",
"@emotion/jest": "^11.9.3",
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@preconstruct/cli": "2.1.7",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "9.0.2",
"@semantic-release/github": "8.0.5",
"@semantic-release/npm": "9.0.1",
"@semantic-release/release-notes-generator": "10.0.3",
"@swc/core": "^1.2.210",
"@swc/jest": "^0.2.21",
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "13.3.0",
"@types/jest": "28.1.4",
"@typescript-eslint/eslint-plugin": "5.30.5",
"@typescript-eslint/parser": "5.30.5",
"babel-jest": "28.1.2",
"babel-preset-gatsby": "^2.18.0",
"cz-conventional-changelog": "3.3.0",
"docz": "2.3.1",
"eslint": "8.19.0",
"eslint-config-react-app": "7.0.1",
"eslint-plugin-prettier": "4.2.1",
"husky": "^8.0.1",
"jest": "28.1.2",
"jest-environment-jsdom": "^28.1.2",
"lint-staged": "13.0.3",
"prettier": "2.7.1",
"pretty-quick": "3.1.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"semantic-release": "19.0.3",
"stylelint": "14.9.1",
"ts-jest": "28.0.5",
"typescript": "4.7.4"
},
"peerDependencies": {
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}