-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 727 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 727 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
{
"name": "tinytranslate",
"version": "2.0.0",
"main": "dist/index.js",
"author": "Vinay M",
"license": "MIT",
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@babel/preset-env": "^7.16.8",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.4.0",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"jest": "^27.4.7",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"scripts": {
"test": "jest",
"prepublish": "npm run build",
"build": "tsc -p . --outDir dist"
}
}