-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.98 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.98 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
{
"name": "bookself",
"version": "0.1.0",
"private": true,
"dependencies": {
"@types/jest": "24.0.15",
"@types/node": "12.6.2",
"@types/react": "16.8.23",
"@types/react-dom": "16.8.4",
"axios": "^0.19.2",
"bootstrap": "^4.5.2",
"firebase": "^7.19.1",
"firebaseui": "^4.6.1",
"node-sass": "^4.14.1",
"re-base": "^4.0.0",
"react": "^16.13.1",
"react-autosuggest": "^9.4.3",
"react-bootstrap": "^1.3.0",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"react-scripts": "^3.4.3",
"typescript": "3.5.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint:ts": "eslint './src/**/*.{ts,tsx,js}'",
"lint:scss": "stylelint '**/*.scss'",
"lint": "npm run lint:scss && npm run lint:ts",
"server": "node-env-run backend --exec nodemon | pino-colada",
"dev": "run-p server start"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/react-autosuggest": "^9.3.14",
"@types/react-router-dom": "^5.1.5",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"body-parser": "^1.19.0",
"cross-env": "^5.2.1",
"dotenv": "^8.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react-hooks": "^1.7.0",
"express": "^4.17.1",
"express-pino-logger": "^4.0.0",
"node-env-run": "^4.0.1",
"nodemon": "^1.19.4",
"npm-run-all": "^4.1.5",
"pino-colada": "^1.6.1",
"prettier": "^1.19.1",
"stylelint": "^13.6.1",
"stylelint-config-standard": "^18.3.0",
"stylelint-scss": "^3.18.0"
}
}