forked from DocSpring/craco-preact
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.37 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
{
"name": "craco-preact",
"version": "1.1.0",
"description": "A Preact plugin for craco / react-scripts / create-react-app ",
"main": "lib/craco-preact.js",
"scripts": {
"test": "jest",
"lint": "eslint --fix lib",
"format": "prettier --write **/*.js",
"update_deps": "node scripts/update_deps"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/FormAPI/craco-preact.git"
},
"keywords": [
"preact",
"craco",
"create-react-app"
],
"author": "Nathan Broadbent",
"license": "MIT",
"bugs": {
"url": "https://github.com/FormAPI/craco-preact/issues"
},
"homepage": "https://github.com/FormAPI/craco-preact#readme",
"devDependencies": {
"clone": "^2.1.2",
"coveralls": "^3.0.2",
"eslint": "5.6.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-prettier": "^3.0.0",
"husky": "^1.1.3",
"jest": "^23.6.0",
"lint-staged": "^8.0.4",
"prettier": "^1.15.3"
},
"dependencies": {
"@craco/craco": "^3.2.2",
"react-scripts": "^2.1.1",
"webpack": "^4.19.1",
"preact": "^8.3.1",
"preact-compat": "^3.18.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,md}": [
"prettier --write",
"git add"
],
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"git add"
]
}
}