-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.36 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.36 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "noteworthy",
"version": "0.1.0",
"private": true,
"dependencies": {
"@apollo/client": "^3.3.16",
"graphql": "^15.5.0",
"query-string": "^7.0.1",
"react": "^17.0.2",
"react-beautiful-dnd": "^13.1.0",
"react-contenteditable": "^3.3.5",
"react-contextmenu": "^2.14.0",
"react-dom": "^17.0.2",
"react-responsive": "^8.2.0",
"react-router-dom": "^5.2.0",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^2.0.3",
"web-vitals": "^1.0.1"
},
"scripts-info": {
"build": "Build production bundle",
"format": "Format source code",
"start": "Start the development server",
"test": "Run tests"
},
"scripts": {
"build": "react-scripts build",
"eslint": "eslint --ext \".js,.jsx,.ts,.tsx\" src",
"format": "eslint --ext \".js,.jsx,.ts,.tsx\" --fix src && prettier --write \"src/**/*.{js,jsx,ts,tsx}\" && prettier --write --parser scss \"src/**/*.scss\"",
"format:tsx": "prettier --list-different \"src/**/*.{js,jsx,ts,tsx}\"",
"format:scss": "prettier --list-different --parser scss \"src/**/*.scss\"",
"format:ci": "yarn run format:tsx && yarn run format:scss",
"start": "BROWSER=none react-scripts start",
"test": "react-scripts test"
},
"husky": {
"hooks": {
"pre-push": "bash ./test.sh"
}
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/enzyme": "^3.10.8",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^26.0.15",
"@types/node": "^12.0.0",
"@types/react": "^17.0.3",
"@types/react-beautiful-dnd": "^13.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-responsive": "^8.0.2",
"@types/react-router-dom": "^5.1.7",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^7.25.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^4.3.8",
"node-sass": "^5.0.0",
"prettier": "^2.2.1",
"react-scripts": "4.0.3",
"typescript": "^4.1.2"
}
}