-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.49 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 2.49 KB
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
{
"name": "react-typescript-quickstart",
"private": true,
"version": "1.0.0",
"description": "A simple React starter kit, but with TypeScript.",
"scripts": {
"start": "node fuse",
"build": "node fuse build",
"test": "jest",
"test:watch": "npm run test -- --watch",
"test:update": "npm run test -- -u",
"lint": "tslint --format stylish \"src/**/*.{ts,tsx}\"",
"typecheck": "tsc --pretty --noEmit",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"format:check": "prettier --list-different \"src/**/*.{ts,tsx}\"",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "https://github.com/blurbyte/react-typescript-quickstart"
},
"keywords": [
"react",
"typescript",
"fusebox",
"jest",
"prettier",
"styled-components"
],
"engines": {
"node": ">=8"
},
"author": "blurbyte",
"license": "MIT",
"dependencies": {
"react": "16.4.2",
"react-dom": "16.4.2",
"styled-components": "3.4.2"
},
"devDependencies": {
"@types/enzyme": "3.1.13",
"@types/enzyme-adapter-react-16": "1.0.3",
"@types/jest": "23.3.1",
"@types/node": "10.7.0",
"@types/react": "16.4.10",
"@types/react-dom": "16.0.7",
"enzyme": "3.4.1",
"enzyme-adapter-react-16": "1.2.0",
"enzyme-to-json": "3.3.4",
"fuse-box": "3.4.0",
"husky": "0.14.3",
"jest": "23.5.0",
"jest-styled-components": "6.0.1",
"lint-staged": "7.2.2",
"opn": "5.3.0",
"prettier": "1.14.2",
"ts-jest": "23.1.3",
"tslib": "1.9.3",
"tslint": "5.11.0",
"tslint-config-prettier": "1.14.0",
"tslint-react": "3.6.0",
"typescript": "3.0.1",
"uglify-es": "3.3.9",
"uglify-js": "3.4.7"
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"printWidth": 120,
"parser": "typescript"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"prettier --write",
"git add"
]
},
"jest": {
"testEnvironment": "jsdom",
"verbose": true,
"setupTestFrameworkScriptFile": "<rootDir>/tools/testSetup.ts",
"transform": {
".(ts|tsx)": "ts-jest"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.js$"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
],
"testMatch": [
"<rootDir>/**/?(*.)test.ts?(x)"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"moduleNameMapper": {
"^@styles/(.*)": "<rootDir>/src/styles/$1"
}
}
}