-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
57 lines (57 loc) · 1.55 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
54
55
56
57
{
"name": "polka-analytics-api",
"version": "1.0.0",
"description": "Api for polka analytics",
"main": "index.js",
"scripts": {
"dev": "nodemon --inspect index.js",
"start": "node index.js",
"build": "yarn install",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "lint-staged",
"pre-commit": "./hooks/pre-commit"
},
"author": "",
"license": "ISC",
"dependencies": {
"@polkadot/api": "^1.13.1",
"@polkadot/util": "^2.9.1",
"@sentry/node": "^5.10.2",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"config": "^3.2.4",
"cors": "^2.8.5",
"express": "^4.17.1",
"helmet": "^3.21.2",
"lodash": "^4.17.15",
"mongoose": "^5.9.11",
"socket.io": "^2.3.0"
},
"devDependencies": {
"nodemon": "^2.0.2",
"@typescript-eslint/eslint-plugin": "2.x",
"@typescript-eslint/parser": "2.x",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react-app": "5.2.1",
"eslint-plugin-flowtype": "4.7.0",
"eslint-plugin-import": "2.x",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-jsx-a11y": "6.x",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "7.x",
"eslint-plugin-react-hooks": "^4.0.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.2",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"shared-git-hooks": "^1.2.1"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && yarn pre-commit"
}
}
}