-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 1.87 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
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "literate-diffs",
"version": "0.1.0",
"private": true,
"type": "module",
"dependencies": {
"@hapi/bell": "^12.1.1",
"@hapi/cookie": "^11.0.2",
"@hapi/hapi": "^20.0.1",
"dotenv": "^8.2.0",
"eslint-config-prettier": "^6.12.0",
"lodash": "^4.17.20",
"node-fetch": "^2.6.1",
"parse-diff": "^0.4.0",
"pg": "^8.3.3",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-quill": "^1.3.5",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^3.4.3",
"react-sortable-hoc": "^0.7.4",
"uuid": "^8.3.0"
},
"scripts": {
"serve": "DOTENV_CONFIG_PATH=server/.env nodemon -r dotenv/config server",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"lint": "eslint -c .eslintrc src/**/*.ts src/**/*.tsx",
"lint:fix": "eslint --fix -c .eslintrc src/**/*.ts src/**/*.tsx",
"format": "prettier --write .",
"eject": "react-scripts eject"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && npm run lint:fix"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"homepage": "https://narrated-diffs.thomasbroadley.com",
"devDependencies": {
"@types/lodash": "^4.14.161",
"@types/node": "^14.11.2",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.1.5",
"@typescript-eslint/eslint-plugin": "4.0.1",
"@typescript-eslint/parser": "4.0.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-react": "^7.21.2",
"husky": "^4.3.0",
"nodemon": "^2.0.4",
"prettier": "^2.1.2",
"pretty-quick": "^3.0.2",
"typescript": "^4.0.3"
}
}