-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 938 Bytes
/
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
{
"name": "easy-localized-translation",
"version": "1.0.2",
"description": "",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "[email protected]:m-Ryan/easy-localized-translation.git"
},
"files": [
"lib"
],
"scripts": {
"build": "tsc",
"test": "jest",
"demo": "ts-node --transpile-only src/demo.ts"
},
"author": "m-Ryan",
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@types/jest": "^28.1.3",
"@types/node": "^18.0.0",
"@types/shelljs": "^0.8.11",
"@types/google-spreadsheet": "^3.3.0",
"@types/lodash": "^4.14.186",
"jest": "^28.1.1"
},
"dependencies": {
"dotenv": "^16.0.3",
"google-spreadsheet": "^3.3.0",
"lodash": "^4.17.21",
"shelljs": "^0.8.5",
"ts-node": "^10.8.1",
"typescript": "^4.7.4"
}
}