-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.41 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
{
"name": "@travel3/travel3-api",
"version": "0.1.01",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "npm run clean && tsc",
"prepare": "husky install",
"lint": "eslint 'src/**/*.{ts,tsx}' --max-warnings 0",
"lint:fix": "eslint --fix 'src/**/*.{ts,tsx}'",
"clean": "rimraf ./dist tsconfig.tsbuildinfo",
"format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"deploy": "npm publish --access public",
"deploy:beta": "npm run deploy --tag beta"
},
"repository": {
"type": "git",
"url": "https://github.com/Travel-3/Travel3-Node-API.git"
},
"keywords": [],
"author": "monisnap-jason",
"license": "ISC",
"devDependencies": {
"@types/extend": "^3.0.1",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.36.2",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^24.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.31.11",
"husky": "^8.0.2",
"prettier": "^2.7.1",
"typescript": "^4.8.3"
},
"dependencies": {
"@types/axios": "^0.14.0",
"extend": "^3.0.2",
"react-native-expo-wheel-picker": "^0.1.8",
"tea4dao": "^1.0.0"
}
}