-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
105 lines (105 loc) · 3.07 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"author": "Checkr",
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"name": "oauth-reference-integration",
"type": "module",
"scripts": {
"setup": "yarn install && cd client/ && yarn install",
"dev": "concurrently \"yarn dev:frontend\" \"yarn dev:backend\"",
"dev:backend": "node server.js",
"dev:docs": "watch 'yarn docs' ./routes",
"dev:frontend": "cd client/ && yarn dev:frontend",
"docs": "docco routes/oauth.js routes/embeds-session-tokens.js client/src/components/account/CheckrConnectLink.js -o client/public/docs",
"test:backend": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"test:frontend": "cd client/ && yarn test",
"test:frontend:ci": "cd client/ && yarn test:ci",
"start": "node server.js",
"heroku-postbuild": "yarn docs && cd client && yarn install && yarn build",
"lint:js": "eslint . --ext .js --ext .jsx --ext .ts --ext .tsx",
"lint:js:fix": "eslint . --ext .js --ext .jsx --ext .ts --ext .tsx --fix",
"lint:style": "stylelint \"**/*.{css,scss}\"",
"lint:style:fix": "stylelint --fix \"**/*.{css,scss}\""
},
"dependencies": {
"chalk": "^5.0.1",
"concurrently": "^7.3.0",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-bearer-token": "^2.4.0",
"jsonwebtoken": "^8.5.1",
"libsodium-wrappers": "^0.7.10",
"lowdb": "^3.0.0",
"morgan": "^1.10.0",
"ngrok": "^4.3.1",
"node-fetch": "^3.2.6",
"supertest": "^6.2.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"@faker-js/faker": "^7.3.0",
"cross-env": "^7.0.3",
"docco": "^0.9.1",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.6.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^28.1.1",
"lint-staged": "^13.0.3",
"mocha": "^10.0.0",
"msw": "^0.44.2",
"nodemon": "^2.0.18",
"prettier": "^2.7.1",
"stylelint": "^14.9.1",
"stylelint-config-recess-order": "^3.0.0",
"stylelint-config-recommended": "^8.0.0",
"stylelint-config-standard": "^26.0.0",
"supertest": "^6.2.3",
"watch": "^1.0.2"
},
"engines": {
"yarn": "1.x",
"node": "16.x"
},
"jest": {
"transform": {},
"testEnvironment": "node",
"testPathIgnorePatterns": [
"node_modules/",
"client/",
"__tests__/testSupport"
],
"globalSetup": "./__tests__/testSupport/setupTests.js",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"moduleNameMapper": {
".+\\.(css|styl|less|sass|scss|png|jpg|ttf|woff|woff2|svg)$": "identity-obj-proxy",
"#(.*)": "<rootDir>/node_modules/$1"
}
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,json}": [
"eslint --fix",
"prettier --write"
],
"*.{css,scss}": [
"stylelint --fix"
]
}
}