-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.84 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.84 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": "ripperr",
"version": "1.0.0",
"author": "Ashton Christie <ash@ashchristie.dev> (https://ashchristie.dev/)",
"license": "MIT",
"scripts": {
"dev": "cd src/app && next -p 9999",
"build": "yarn build-next && yarn build-firebase",
"build-next": "cd src/app && next build",
"build-firebase": "cd src/functions && yarn build",
"start": "cd src/app && next start",
"serve": "yarn build && firebase serve",
"shell": "yarn build && firebase functions:shell",
"deploy": "firebase deploy",
"deploy-fns": "firebase deploy --only functions",
"logs": "firebase functions:log",
"check-types": "tsc --build ./src/app/tsconfig.json",
"lint": "jest --config test/jest.lint.js",
"prettier": "prettier --ignore-path .gitignore \"**/*.+(js|json|ts|tsx)\"",
"format": "yarn prettier -- --write",
"check-format": "yarn prettier -- --list-different",
"validate": "npm-run-all --parallel check-types check-format test:coverage test:e2e build",
"install:all": "yarn install && cd src/functions && yarn install",
"setup": "yarn install:all && yarn validate",
"test": "is-ci \"test:coverage\" \"test:watch\"",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand --watch",
"cy:run": "cypress run",
"cy:open": "cypress open",
"test:e2e": "is-ci \"test:e2e:run\" \"test:e2e:dev\"",
"pretest:e2e:run": "npm run build",
"test:e2e:run": "start-server-and-test start http://localhost:9999 cy:run",
"test:e2e:dev": "start-server-and-test dev http://localhost:9999 cy:open"
},
"jest-runner-eslint": {
"cliOptions": {
"ignorePath": "./.gitignore"
}
},
"husky": {
"hooks": {
"pre-commit": "npm run check-types && lint-staged && npm run build"
}
},
"lint-staged": {
"**/*.+(js|jsx|ts|tsx|json|css|html|md)": [
"prettier --write",
"jest --findRelatedTests"
]
},
"dependencies": {
"@reduxjs/toolkit": "^1.3.6",
"dotenv": "^8.2.0",
"firebase": "^7.14.3",
"formik": "^2.1.1",
"next": "^9.4.0",
"next-images": "^1.4.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-hook-form": "^5.7.2",
"react-redux": "^7.2.0",
"react-select": "^3.1.0",
"react-sortable-hoc": "^1.11.0",
"react-textarea-autosize": "^7.1.2",
"redux": "^4.0.5",
"styled-components": "^5.1.0",
"yup": "^0.28.5"
},
"devDependencies": {
"@jackfranklin/test-data-bot": "^1.3.0",
"@testing-library/cypress": "^6.0.0",
"@testing-library/jest-dom": "^5.7.0",
"@testing-library/react": "^10.0.4",
"@testing-library/user-event": "^10.3.1",
"@types/jest": "^25.2.1",
"@types/node": "^14.0.0",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/react-redux": "^7.1.8",
"@types/react-select": "^3.0.12",
"@types/react-textarea-autosize": "^4.3.5",
"@types/styled-components": "^5.1.0",
"@types/yup": "^0.26.27",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"cypress": "^4.5.0",
"cypress-firebase": "^1.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-jest": "^3.0.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^4.0.2",
"firebase-admin": "^8.12.1",
"husky": "^4.2.5",
"is-ci-cli": "^2.0.0",
"jest": "^25.5.4",
"jest-runner-eslint": "^0.8.0",
"jest-styled-components": "^7.0.2",
"jest-watch-select-projects": "^2.0.0",
"jest-watch-typeahead": "^0.6.0",
"lint-staged": "^10.2.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"start-server-and-test": "^1.11.0",
"ts-jest": "^25.5.1",
"typescript": "^3.9.2"
}
}