-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.78 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
{
"name": "gitmail",
"version": "1.0.0",
"description": "Community Driven Newsletter",
"license": "MIT",
"scripts": {
"prepare": "husky install",
"dev": "nodemon -e ts,tsx ./src/index.ts",
"build": "tsc --project tsconfig.json",
"prettier": "prettier --check \"**/*.ts\"",
"prettier:format": "prettier --write \"**/*.ts\"",
"eslint": "eslint -c ./.eslintrc --no-eslintrc ./**/*.ts*",
"lint": "concurrently \"npm run eslint\" \"npm run prettier\"",
"test": "jest",
"typecheck": "tsc --noEmit",
"commitlint": "commitlint"
},
"volta": {
"ts-node": "^9.1.1",
"node": "14.17.1",
"yarn": "1.22.10"
},
"devDependencies": {
"@commitlint/cli": "^13.2.0",
"@commitlint/config-conventional": "^12.1.4",
"@types/file-type": "^10.9.1",
"@types/jest": "^26.0.24",
"@types/styled-components": "^5.1.14",
"@types/react": "^17.0.26",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"@types/jsdom": "^16.2.13",
"concurrently": "^6.2.0",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"husky": "^7.0.1",
"jest": "^26.4.2",
"nodemon": "^2.0.13",
"prettier": "^2.3.2",
"ts-jest": "^26.5.6",
"ts-node": "^9.1.1",
"typescript": "^4.3.5"
},
"dependencies": {
"file-type": "^16.5.3",
"juice": "^8.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"styled-components": "^5.3.0",
"dotenv": "^10.0.0",
"undici": "^4.7.0",
"jsdom": "^16.6.0"
}
}