-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.13 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.13 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
{
"name": "personal-website",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "react-app-rewired --max-old-space-size=4096 start",
"build": "react-app-rewired --max-old-space-size=4096 build",
"test": "react-scripts --max-old-space-size=4096 test --env=node",
"test:update": "npm run test -- -u",
"test:server": "CI=true npm run test -- --passWithNoTests",
"test:coverage": "npm run test -- --coverage --colors",
"lint": "eslint --ext js,ts,tsx ./src",
"lint:output": "npm run lint -- -t checkstyle -o tslint_error_log.txt",
"depcheck": "depcheck . --ignores='webpack,babel-*,@types/*,eslint-config-react-app,eslint-plugin-jsx-a11y,@emotion/babel-preset-css-prop'"
},
"eslintConfig": {
"extends": "react-app"
},
"jest": {
"coverageThreshold": {
"global": {
"functions": 80,
"lines": 80
}
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@emotion/core": "~10.0.28",
"axios": "^0.19.0",
"bootstrap": "^4.3.1",
"customize-cra": "^1.0.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.13.1",
"express": "^4.17.0",
"mobx": "^5.9.4",
"mobx-react": "^5.4.4",
"react": "17.0.1",
"react-app-rewired": "^2.1.6",
"react-device-detect": "^1.6.2",
"react-dom": "17.0.1",
"react-icons": "^3.7.0",
"react-markdown": "^4.1.0",
"react-router-dom": "^5.0.1",
"react-scripts": "4.0.1",
"reactstrap": "^8.7.1",
"sinon": "^9.2.1",
"typescript": "~4.0.5"
},
"devDependencies": {
"@emotion/babel-preset-css-prop": "~10.0.27",
"@types/enzyme": "^3.9.2",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^26.0.15",
"@types/node": "12.0.2",
"@types/react": "17.0.0",
"@types/react-dom": "17.0.0",
"@types/react-router-dom": "^4.3.3",
"@types/reactstrap": "^8.0.1",
"@types/sinon": "^9.0.8",
"babel-plugin-import": "~1.13.0",
"depcheck": "^1.3.1"
}
}