-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.8 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
{
"name": "design-at-cornell-deploy",
"version": "0.1.0",
"private": true,
"scripts": {
"startReact": "yarn workspace design-at-cornell start",
"frontend-build": "yarn workspace design-at-cornell build",
"frontend-test": "yarn workspace design-at-cornell test",
"frontend-eject": "yarn workspace design-at-cornell eject",
"build": "yarn workspaces run build",
"frontend-dev": "yarn workspace design-at-cornell start",
"backend-dev": "yarn workspace server start",
"format": "prettier --write \"**/*.{ts,js,tsx,css,html}\"",
"format:check": "prettier --check \"**/*.{ts,js,tsx,css,html}\"",
"lint": "eslint . --ext .js --ext .ts --ext .jsx --ext .tsx",
"lint:fix": "yarn lint --fix"
},
"engines": {
"node": "16.x"
},
"dependencies": {
"@types/express": "^4.17.11",
"axios": "^0.21.1",
"cors": "^2.8.5",
"express": "^4.17.1",
"firebase-admin": "^9.6.0",
"react-spring": "^9.5.5",
"ts-node": "^9.1.1",
"typescript": "^4.2.2"
},
"workspaces": [
"design-at-cornell",
"server"
],
"prettier": {
"printWidth": 100,
"singleQuote": true,
"trailingComma": "es5",
"endOfLine": "lf",
"proseWrap": "always"
},
"devDependencies": {
"@firebase/testing": "^0.20.11",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"babel-eslint": "^10.1.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.2.1"
}
}