-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 923 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
{
"name": "phoneless",
"version": "0.0.2-SNAPSHOT",
"description": "HTTP API interface to Google's libphonenumber",
"main": "dist/index.js",
"repository": "https://github.com/telostat/phoneless",
"author": "Vehbi Sinan Tunalioglu <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"dev": "nodemon src/index.ts",
"build": "ncc build src/index.ts -o dist"
},
"dependencies": {
"express": "^4.17.1",
"google-libphonenumber": "^3.2.24"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/google-libphonenumber": "^7.4.21",
"@types/node": "^16.10.2",
"@vercel/ncc": "^0.31.1",
"nodemon": "^2.0.13",
"prettier": "^2.4.1",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"trailingComma": "es5",
"printWidth": 120
}
}