forked from significa/significa-bug-reporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.54 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
{
"name": "significa-bug-reporter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint \"./src/**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "npm run link -- --fix",
"format": "prettier \"./src/**/*.+(ts|tsx|js|jsx|json|yml|yaml|md|mdx)\"",
"format:write": "npm run format -- --write",
"validate:format": "npm run format -- --check",
"validate:build": "tsc --noEmit",
"validate": "npm run lint && npm run validate:format && npm run validate:build",
"postinstall": "husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.34.0",
"@aws-sdk/s3-request-presigner": "^3.34.0",
"@linear/sdk": "^1.20.0",
"@stitches/react": "^1.2.1",
"next": "^11.1.2",
"next-themes": "^0.0.15",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"zustand": "^3.5.10"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@next/eslint-plugin-next": "^11.1.2",
"@significa/eslint-config": "^2.0.0",
"@significa/prettier-config": "^2.0.0",
"@significa/tsconfig-config": "^2.0.0",
"@svgr/webpack": "^5.5.0",
"@types/jest": "^27.0.2",
"@types/node": "^16.10.1",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"eslint": "^7.32.0",
"husky": "^7.0.2",
"jest": "^27.2.2",
"lint-staged": "^11.1.2",
"typescript": "^4.4.3"
}
}