forked from JoshuaKGoldberg/typescript-react-javascriptla
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.15 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
{
"author": "Josh Goldberg <[email protected]>",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"contributors": [
"Josh Goldberg <[email protected]>",
"Sylvana Santos <[email protected]>"
],
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "4.0.3"
},
"description": "Demo code for our Intro to TypeScript + React talk! ✨",
"devDependencies": {
"@types/node": "^16.4.2",
"@types/react": "^17.0.15",
"@types/react-dom": "^17.0.9",
"typescript": "^4.3.5"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"keywords": [
"demo",
"intro",
"typescript",
"react"
],
"license": "MIT",
"name": "typescript-react-javascriptla",
"scripts": {
"build": "react-scripts build",
"compile": "tsc",
"compile:strict": "tsc --strict",
"start": "react-scripts start",
"test": "react-scripts test"
},
"version": "0.1.0"
}