forked from jaredpalmer/after.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.86 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
{
"name": "@jaredpalmer/after",
"private": false,
"version": "1.2.1",
"description": "Build isomorphic Javascript applications with ease.",
"repository": "jaredpalmer/after.js",
"author": "Jared Palmer <[email protected]>",
"license": "MIT",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build",
"after.js",
"document.js",
"asyncComponent.js",
"ensureReady.js",
"render.js",
"loadInitialProps.js"
],
"scripts": {
"prepare": "tsc -p tsconfig.build.json",
"start": "tsc -p tsconfig.build.json -w",
"format": "prettier --trailing-comma es5 --single-quote --write 'packages/*/*.js' 'packages/*/!(node_modules)/**/*.js'",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"prettier --trailing-comma es5 --single-quote --write",
"git add"
]
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/coverage/",
"<rootDir>/node_modules/",
"<rootDir>/examples/"
],
"collectCoverageFrom": [
"**/*.js"
],
"coveragePathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/packages/*/node_modules/",
"<rootDir>/examples/",
"<rootDir>/coverage/"
]
},
"peerDependencies": {
"react": ">=16"
},
"devDependencies": {
"@types/express": "^4.11.1",
"@types/node": "^9.4.2",
"@types/react": "^16.0.36",
"@types/react-dom": "^16.0.3",
"@types/react-helmet": "^5.0.3",
"@types/react-router-dom": "^4.2.3",
"express": "^4.16.2",
"husky": "^0.14.3",
"jest": "^22.2.1",
"lint-staged": "^6.1.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"ts-jest": "^22.0.3",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.7.0",
"tslint-react": "^3.4.0",
"typescript": "^2.7.1"
},
"dependencies": {
"react-helmet": "^5.2.0",
"react-router-dom": "^4.2.2"
}
}