-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 2.55 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "sameer-web-developer-portfolio",
"version": "0.1.0",
"private": true,
"main": "src/index.tsx",
"dependencies": {
"@types/node": "^16.7.0",
"@types/react": "^17.0.19",
"@types/react-dom": "^17.0.9",
"axios": "^0.21.1",
"bootstrap": "^4.6.1",
"drei": "0.0.69",
"popper.js": "^1.16.1",
"postprocessing": "6.16.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-postprocessing": "1.1.3",
"react-scripts": "3.4.1",
"react-three-fiber": "5.0.0-beta.11",
"three": "0.119.1",
"typescript": "^4.3.5"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@types/enzyme": "^3.10.9",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^27.0.1",
"@typescript-eslint/eslint-plugin": "4.0.1",
"@typescript-eslint/parser": "4.0.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"enzyme-to-json": "^3.6.2",
"gh-pages": "^3.2.0",
"husky": "^4.2.5",
"jest-environment-jsdom-sixteen": "^2.0.0",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"raw-loader": "^4.0.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jest-environment-jsdom-sixteen",
"test:coverage:integration": "react-scripts test --watchAll=false --env=jest-environment-jsdom-sixteen --coverage --testPathPattern=\"integration.test.tsx\" --verbose",
"test:coverage:unit": "react-scripts test --watchAll=false --env=jsdom --coverage --testPathPattern=\"spec.tsx\" --verbose",
"citest:coverage:integration": "react-scripts test --watchAll=false --env=jest-environment-jsdom-sixteen --coverage --testPathPattern=\"integration.test.tsx\" ",
"citest:coverage:unit": "react-scripts test --env=jsdom --coverage --testPathPattern=\"spec.tsx\" ",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged --pattern \"**/*.*(js)\""
}
},
"prettier": {
"semi": false,
"trailingComma": "es5",
"singleQuote": true,
"jsxBracketSameLine": true,
"tabWidth": 2,
"printWidth": 120
},
"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"
]
},
"keywords": [],
"description": ""
}