-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 2.9 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 2.9 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "hackathon2020",
"version": "4.5.0",
"author": {
"name": "ZorianaPro",
"email": "zoryanalesyk@gmail.com"
},
"homepage": "https://hackremote.today",
"private": true,
"dependencies": {
"aos": "^3.0.0-beta.6",
"@koa/cors": "^3.1.0",
"http-status": "^1.4.2",
"koa": "^2.13.0",
"koa-body": "^4.2.0",
"koa-bodyparser": "^4.2.1",
"koa-cookie": "^1.0.0",
"koa-cors": "0.0.16",
"koa-logger": "^3.2.1",
"koa-mount": "^4.0.0",
"koa-router": "^8.0.8",
"koa-static": "^5.0.0",
"koa-useragent": "^4.0.0",
"mongoose": "^5.9.28",
"mongoose-autopopulate": "^0.12.2"
},
"scripts": {
"build": "react-scripts build",
"coverage:ci": "CI=true npm test -- --ci --coverage",
"eject": "react-scripts eject",
"lint": "eslint --ext js,jsx src/",
"lint:ci": "CI=true eslint --format junit -o test-results/eslint/results.xml --ext js,jsx src/",
"start": "react-scripts start",
"test": "react-scripts test",
"test:ci": "CI=true npm test -- --ci --reporters='default' --reporters='jest-junit'",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"server": "node ./src/server/index.js"
},
"husky": {
"hooks": {
"pre-commit": "CI=true npm run lint && npm run test:ci",
"pre-push": "CI=true npm run lint && npm run test:ci"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@haensl/eslint-config": "^1.3.0",
"@haensl/services": "^1.2.0",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"animejs": "^3.2.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.3",
"enzyme-to-json": "^3.5.0",
"fetch-mock": "^9.10.6",
"husky": "^4.2.5",
"isomorphic-fetch": "^2.2.1",
"jest-junit": "^11.1.0",
"lint-staged": "^10.2.11",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-redux": "^7.2.1",
"react-router-dom": "^5.1.2",
"react-router-hash-link": "^1.2.2",
"react-scripts": "3.4.0",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-mock-store": "^1.5.4",
"redux-saga": "^1.1.3",
"save-dev": "0.0.1-security"
},
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"collectCoverageFrom": [
"<rootDir>/src/**/*.{js,jsx}",
"!<rootDir>/node_modules/"
],
"coverageReporters": [
"text"
]
},
"jest-junit": {
"outputDirectory": "test-results/jest",
"outputName": "results.xml",
"suiteName": "hackathon2020"
},
"eslintConfig": {
"extends": [
"react-app",
"@haensl/eslint-config"
],
"rules": {
"no-param-reassign": "off"
}
}
}