-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.21 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
{
"name": "dopplr",
"version": "0.1.0",
"description": "Dopplr is analytical tool for creating beautiful dashboards from sql queries",
"dependencies": {},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "4.0.1",
"@typescript-eslint/parser": "4.0.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "^7.18.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.3.0",
"typescript": "^4.0.3"
},
"author": {
"name": "Dopplr Maintainers"
},
"scripts": {
"lint": "eslint client/src/**/*.ts client/src/**/*.tsx client/*.js server/src/**/*.ts --fix",
"start:server": "cd server && npm run build && npm run start:prod",
"postinstall": "cd server && yarn install && cd ../client && yarn install",
"build:client": "cd client && yarn build"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"license": "MIT",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}