-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.33 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
{
"name": "enhanced-react-style",
"private": true,
"version": "0.0.0",
"license": "MIT",
"scripts": {
"build": "repo-cooker --build",
"clean": "repo-cooker clean",
"checkdeps": "repo-cooker --check-dependencies",
"commit": "git-cz",
"commitmsg": "cz-customizable-ghooks",
"fixdeps": "repo-cooker --fix-dependencies",
"format": "npm run lint -- --fix && prettier --write --with-node-modules \"**/*.md\" \"**/*.css\" \"**/*.json\"",
"install": "npm run link && npm run build",
"link": "repo-cooker --link",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"precommit": "lint-staged",
"release": "repo-cooker --release",
"test": "repo-cooker test --no-parallel"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cerebral/enhanced-react-style.git"
},
"dependencies": {
"@babel/plugin-transform-react-jsx": "7.3.0",
"@emotion/babel-plugin-jsx-pragmatic": "0.1.2",
"babel-plugin-emotion": "10.0.9",
"babel-plugin-syntax-jsx": "6.18.0",
"@emotion/core": "10.0.10"
},
"devDependencies": {
"@babel/core": "7.4.4",
"@types/jest": "24.0.13",
"@typescript-eslint/eslint-plugin": "^1.7.0",
"@typescript-eslint/parser": "^1.7.0",
"babel-plugin-tester": "6.2.1",
"commitizen": "^3.1.1",
"cz-customizable": "^6.2.0",
"cz-customizable-ghooks": "^1.5.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.2.0",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-jsx": "^6.0.2",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jest": "^22.5.1",
"eslint-plugin-jsx": "0.0.2",
"eslint-plugin-node": "^9.0.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-standard": "^4.0.0",
"husky": "^0.14.3",
"jest": "24.8.0",
"lint-staged": "^8.1.6",
"prettier": "1.17.0",
"repo-cooker": "^6.3.0",
"simple-mock": "^0.8.0",
"ts-jest": "24.0.2",
"typescript": "3.4.5"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix",
"git add"
],
"*.{md,css,json}": [
"prettier --write --with-node-modules",
"git add"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": ".cz-config.js"
}
}
}