-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
44 lines (44 loc) · 1.01 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
{
"name": "react-with-typescript",
"license": "ISC",
"version": "0.1.0",
"private": true,
"keywords": [
"react",
"typescript",
"context",
"hooks",
"examples"
],
"dependencies": {
"eslint": "5.6.0",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-scripts": "^3.1.1",
"react-scripts-ts": "^4.0.8",
"zakalwe": "^1.0.10"
},
"devDependencies": {
"@types/jest": "^23.3.12",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"@types/react-test-renderer": "^16.9.0",
"react-test-renderer": "^16.9.0",
"typescript": "^3.6.2"
},
"author": "RJ Zaworski <[email protected]> (https://rjzaworski.com)",
"scripts": {
"start": "react-scripts-ts start",
"build": "react-scripts-ts build",
"test": "react-scripts-ts test --env=jsdom",
"eject": "react-scripts-ts eject",
"watch": "tsc --watch -p ./tsconfig.json"
},
"jest": {},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}