-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
106 lines (106 loc) · 2.69 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
{
"name": "create-strv-app",
"description": "Set up new app in line with STRV's best practices in one command",
"version": "2.0.2",
"author": "Pavel Prichodko <prichodko.p@gmail.com>",
"bugs": {
"url": "https://github.com/prichodko/create-strv-app/issues"
},
"keywords": [
"create-react-app",
"react",
"strv"
],
"engines": {
"node": ">=8.3.0"
},
"files": [
"bin",
"src",
"templates"
],
"bin": "./bin/create-strv-app.js",
"repository": "prichodko/create-strv-app",
"license": "MIT",
"scripts": {
"lint": "eslint bin src",
"lint:templates": "eslint templates",
"format": "prettier --write '*/**/*.{css,md,json,js}'"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
],
"*.{json,css,md}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@babel/parser": "^7.2.2",
"chalk": "^2.4.1",
"execa": "^1.0.0",
"fs-extra": "^7.0.1",
"globby": "^8.0.1",
"inquirer": "^6.2.1",
"isbinaryfile": "^3.0.3",
"lodash.isarray": "^4.0.0",
"lodash.merge": "^4.6.1",
"lodash.mergewith": "^4.6.1",
"log-symbols": "^2.2.0",
"meow": "^5.0.0",
"mri": "^1.1.1",
"ms": "^2.1.1",
"ora": "^3.0.0",
"please-upgrade-node": "^3.1.1",
"recast": "^0.16.1",
"sade": "^1.4.1",
"sort-keys": "^2.0.0",
"update-notifier": "^2.5.0",
"validate-npm-package-name": "^3.0.0"
},
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"@strv/eslint-config-javascript": "^9.1.1",
"@types/jest": "^23.3.10",
"@types/next": "^7.0.5",
"@types/node": "^10.12.15",
"@types/react": "^16.7.17",
"@types/react-dom": "^16.0.11",
"@types/react-redux": "^6.0.11",
"@types/react-router-dom": "^4.3.1",
"@types/styled-components": "^4.1.4",
"@types/webpack-env": "^1.13.6",
"@zeit/next-typescript": "^1.1.1",
"babel-eslint": "^10.0.1",
"babel-plugin-styled-components": "^1.10.0",
"eslint": "^5.10.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-cypress": "^2.1.3",
"husky": "^1.2.1",
"lint-staged": "^8.1.0",
"prettier": "^1.15.3",
"react-redux": "^6.0.0",
"redux": "^4.0.1",
"redux-devtools-extension": "^2.13.7",
"styled-components": "^4.1.2",
"stylelint": "^9.9.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.5.1",
"typescript": "^3.2.2"
}
}