-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
53 lines (53 loc) · 1.53 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
50
51
52
53
{
"name": "nylas-use-cases",
"version": "0.1.0",
"description": "Explore the use cases for Nylas API by using frameworks of your choice.",
"engines": {
"npm": ">=8.0.0",
"node": ">=14.0.0"
},
"type": "module",
"scripts": {
"postinstall": "npm run setup",
"setup": "node scripts/setup",
"start": "node scripts/start",
"lint": "npx eslint --ext .js -f visualstudio .",
"lint:fix": "npm run lint -- --fix",
"lint:ci": "npm run lint:fix -- --quiet",
"lint:prettier": "prettier --write '**/*{.js,.jsx}'",
"lint:prettier:check": "prettier --check '**/*{.js,.jsx}'",
"lint:pretty-quick": "pretty-quick --staged --pattern '**/*{.js,.jsx}'",
"prep:husky": "npx husky install"
},
"devDependencies": {
"concurrently": "^7.2.2",
"cross-env": "^7.0.3",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-prettier-vue": "^4.2.0",
"eslint-plugin-vue": "^9.4.0",
"husky": "^8.0.0",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3"
},
"dependencies": {
"axios": "^1.2.1",
"chalk": "^5.0.1",
"dompurify": "^2.4.0",
"dotenv": "^16.0.1",
"inquirer": "^9.1.0",
"luxon": "^3.1.0"
},
"author": "Nylas, Inc.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nylas/use-cases.git"
},
"bugs": {
"url": "https://github.com/nylas/use-cases/issues"
},
"homepage": "https://github.com/nylas/use-cases#readme"
}