forked from alepacheco/landing-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·76 lines (76 loc) · 1.89 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
{
"name": "landing-template",
"version": "1.0.0",
"description": "Template website",
"main": "index.js",
"scripts": {
"prebuild": "npm test",
"test": "jest && npm run lint",
"coverage": "jest --coverage --coverageReporters=html",
"send-coverage": "jest --coverage --coverageReporters=text-lcov | coveralls",
"lint": "npm run prettier-check",
"dev": "next",
"build": "next build",
"start": "next start",
"prettier-check": "prettier --check \"./**/*.{ts,tsx}\"",
"fix": "npm run prettier",
"prettier": "prettier --write \"./**/*.{ts,tsx}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/alepacheco/landing-template.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/alepacheco/landing-template/issues"
},
"homepage": "https://github.com/alepacheco/landing-template#readme",
"dependencies": {
"@zeit/next-sass": "^1.0.1",
"next": "^9.0.5",
"next-routes": "^1.4.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-ga": "^2.6.0",
"react-test-renderer": "^16.10.2"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/node": "^12.7.11",
"@types/react": "^16.9.4",
"@types/react-test-renderer": "^16.9.0",
"jest": "^24.9.0",
"node-sass": "^4.12.0",
"prettier": "^1.18.2",
"ts-jest": "^24.1.0",
"typescript": "^3.6.3"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"bracketSpacing": true,
"jsxBracketSameLine": true,
"arrowParens": "avoid",
"singleQuote": true
},
"jest": {
"roots": [
"<rootDir>/tests"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.{ts,tsx}",
"!**/node_modules/**"
],
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.test.json"
}
}
}
}