-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 766 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 766 Bytes
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
{
"name": "typefast",
"version": "0.1.0",
"private": true,
"dependencies": {
"@types/lodash": "^4.14.150",
"lodash": "^4.17.21",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scripts-ts": "4.0.8"
},
"scripts": {
"start": "react-scripts-ts start",
"build": "react-scripts-ts build",
"test": "jest",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"eject": "react-scripts-ts eject"
},
"devDependencies": {
"@types/jest": "^23.3.9",
"@types/node": "^10.12.2",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
"jest": "^23.6.0",
"prettier": "1.15.1",
"ts-jest": "^23.10.4",
"typescript": "^3.1.6"
},
"prettier": {
"tabWidth": 4
}
}