forked from wojtek-krysiak/admin-bro-ts-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.19 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
{
"name": "workshop",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "nodemon --watch 'src/**/*.ts' --ignore 'src/**/*.tsx' --exec './node_modules/.bin/ts-node' src/server.ts",
"lint": "eslint './src/**/*.ts' './src/**/*.tsx'"
},
"dependencies": {
"@typegoose/typegoose": "^6.3.2",
"@types/axios": "^0.14.0",
"@types/react-redux": "^7.1.7",
"@types/redux": "^3.6.0",
"admin-bro": "^2.0.0-beta.29",
"admin-bro-expressjs": "^2.0.0-beta.1",
"admin-bro-mongoose": "^0.4.0",
"axios": "^0.19.2",
"date-fns": "^2.9.0",
"express": "^4.17.1",
"express-formidable": "^1.2.0",
"jira-connector": "^3.1.0",
"mongoose": "^5.9.1",
"nodemon": "^2.0.2",
"ts-node": "^8.6.2",
"typescript": "^3.8.2"
},
"devDependencies": {
"@types/express": "^4.17.2",
"@types/mongoose": "^5.7.1",
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/parser": "^2.20.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^1.7.0"
}
}