-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.97 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
{
"name": "emblem-anims",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"build": "yarn clean && yarn build:types && yarn build:js",
"build:client": "cd client && yarn build",
"build:js": "babel server --out-dir build --extensions \".ts,.tsx\" --source-maps inline",
"build:storybook": "cd client && build-storybook -s public",
"build:types": "tsc",
"clean": "rimraf build/*",
"clean:node": "rimraf node_modules/*",
"healthcheck": "yarn lint && yarn build",
"lint": "yarn lint:js",
"lint:js": "eslint server/**/*.ts | yarn prettier --check",
"prettier": "prettier \"**/*.{json,md,js,ts,tsx,jsx,css}\"",
"prettier:fix": "yarn prettier --write",
"start": "yarn build && node build/server.js",
"start:client": "cd client && yarn start",
"start:dev": "concurrently \"yarn start --ignore 'client/*'\" \"yarn start:client\"",
"start:skip": "node build/server",
"start:storybook": "cd client && yarn storybook",
"test": "jest",
"test:client": "cd client && yarn test"
},
"author": "Brady Shinners",
"license": "ISC",
"dependencies": {
"@babel/runtime": "^7.9.2",
"body-parser": "^1.19.0",
"bottleneck": "^2.19.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"googleapis": "49.0.0",
"mongodb": "^3.5.6"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-numeric-separator": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.5",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-typescript": "^7.9.0",
"@types/bluebird": "^3.5.30",
"@types/body-parser": "^1.19.0",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/express": "^4.17.6",
"@types/jest": "25.2.1",
"@types/mongodb": "^3.5.8",
"@types/node": "^13.13.1",
"@types/prop-types": "^15.7.3",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
"@types/sequelize": "^4.28.8",
"@types/storybook__react": "^5.2.1",
"@types/validator": "^13.0.0",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"concurrently": "^5.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-flowtype": "^4.7.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.5.0",
"husky": "^4.2.5",
"jest": "24.9.0",
"lint-staged": "^10.1.6",
"prettier": "2.0.4",
"react": "^16.13.1",
"rimraf": "^3.0.2",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn healthcheck"
}
},
"resolutions": {
"webpack": "4.42.0"
},
"lint-staged": {
"server/**/*.{js,jsx,ts,tsx}": "eslint --fix",
"**/*.{json,md,js,ts,tsx,jsx,css}": "prettier --write"
}
}