-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.24 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.24 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
{
"name": "tech-sorting-hat",
"version": "1.0.0",
"private": true,
"dependencies": {
"@cypress/instrument-cra": "^1.1.1",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"axios": "^0.19.2",
"customize-cra": "^0.9.1",
"cypress": "^4.4.1",
"dotenv": "^8.2.0",
"lodash": "^4.17.15",
"react": "^16.13.1",
"react-app-rewired": "^2.1.5",
"react-dom": "^16.13.1",
"react-ga": "^2.7.0",
"react-particles-js": "^2.7.1",
"react-redux": "^7.2.0",
"react-router-dom": "^5.1.2",
"react-scripts": "3.4.0",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"styled-components": "^5.1.0",
"tailwindcss-pseudo": "^1.0.3"
},
"devDependencies": {
"@babel/preset-env": "^7.9.5",
"@cypress/code-coverage": "^3.5.1",
"autoprefixer": "^9.7.4",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-import": "^1.13.0",
"babel-plugin-istanbul": "^6.0.0",
"cypress-plugin-tab": "^1.0.5",
"identity-obj-proxy": "^3.0.0",
"istanbul-lib-coverage": "^3.0.0",
"it": "^1.1.1",
"jest": "^25.4.0",
"nyc": "^15.0.1",
"postcss-cli": "^7.1.0",
"start-server-and-test": "^1.11.0",
"tailwindcss": "^1.2.0"
},
"scripts": {
"start": "react-scripts start",
"prestart": "yarn build:css",
"build": "react-scripts build",
"prebuild": "npm run build:css",
"eject": "react-app-rewired eject",
"build:css": "postcss src/styles/tailwind.css -o src/styles/app.css",
"watch:css": "postcss src/styles/tailwind.css -o src/styles/app.css -w",
"test:ci": "start-server-and-test start http://localhost:3000 test",
"cy:open": "cypress open",
"test:jest": "jest __tests__",
"cypress:coverage:run": "cypress run || true",
"start:coverage": "react-scripts -r @cypress/instrument-cra start",
"cypress:coverage": "start-server-and-test start:coverage http://localhost:3000 cypress:coverage:run || true",
"test": "yarn cypress:coverage:run && yarn test:jest",
"coverage": "yarn cypress:coverage:run; yarn test:jest; true",
"pretest": "rm -rf .nyc_output || true",
"posttest": "yarn report:combined",
"mkdir:reports": "mkdir reports || true",
"precopy:reports": "yarn mkdir:reports",
"copy:reports": "cp coverage/cypress-coverage/coverage-final.json reports/from-cypress.json && cp coverage/jest-coverage/coverage-final.json reports/from-jest.json",
"precombine:reports": "yarn copy:reports && mkdir .nyc_output || true",
"combine:reports": "npx nyc merge reports && mv coverage.json .nyc_output/out.json",
"prereport:combined": "yarn combine:reports",
"report:combined": "npx nyc report --reporter lcov --reporter text --report-dir coverage/combined",
"postreport:combined": "cp coverage/combined/lcov-report/index.html reports/combined.html"
},
"nyc": {
"report-dir": "coverage/cypress-coverage"
},
"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"
]
},
"respository": {
"type": "git",
"url": "https://github.com/Lambda-School-Labs/sorting-hat-fe"
},
"keywords": [],
"author": "",
"license": "ISC",
"homepage": "https://www.sortinghat.tech/"
}