-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.63 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.63 KB
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
{
"name": "@colorstack/mnm",
"version": "1.0.0",
"description": "Algorithm that pairs mentees and mentors together based on their interests and goals. Currently available as an Airtable custom application.",
"author": "ColorStack, Inc.",
"license": "MIT",
"scripts": {
"format": "prettier --ignore-path .gitignore --list-different \"**/*.+(ts|tsx)\"",
"format:fix": "prettier --ignore-path .gitignore --write \"**/*.+(ts|tsx)\"",
"lint": "eslint --ignore-path .gitignore . --ext .ts,.tsx src",
"lint:fix": "eslint --ignore-path .gitignore . --ext .ts,.tsx src --fix",
"test": "jest",
"validate": "npm-run-all --parallel format lint"
},
"dependencies": {
"@airtable/blocks": "latest",
"lodash.omit": "^4.5.0",
"nanoid": "^3.1.23",
"react": "^16.9.0",
"react-dom": "^16.9.0"
},
"devDependencies": {
"@airtable/blocks-cli": "0.0.63",
"@types/jest-in-case": "^1.0.3",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"eslint": "^7.27.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-config-rami": "^1.0.9",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sort-keys-fix": "^1.1.1",
"jest": "^26.6.3",
"jest-in-case": "^1.0.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.0",
"ts-jest": "^26.5.6",
"typescript": "^4.2.4"
}
}