-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.53 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
{
"private": true,
"name": "parcel-prettier-preact-emotion-boilerplate",
"version": "0.0.1",
"description": "",
"scripts": {
"build": "parcel build src/index.html",
"lint": "eslint src",
"precommit": "pretty-quick --staged",
"pretty-quick": "pretty-quick",
"start": "parcel src/index.html",
"test": "jest"
},
"author": "Tegan Churchill <[email protected]>",
"license": "MIT",
"dependencies": {
"emotion": "^9.1.2",
"preact": "^8.2.7",
"preact-compat": "^3.18.0",
"preact-router": "^2.6.0"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-plugin-emotion": "^9.1.2",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-constant-elements": "^6.23.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.6.1",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-react-app": "^2.1.0",
"eslint-plugin-flowtype": "^2.46.3",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.7.0",
"husky": "^0.14.3",
"jest": "^22.4.3",
"jest-emotion": "^9.1.2",
"parcel-bundler": "^1.7.1",
"preact-render-spy": "^1.2.2",
"prettier": "^1.12.1",
"pretty-quick": "^1.4.1"
},
"alias": {
"react": "preact-compat",
"react-dom": "preact-compat"
}
}