-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.21 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
{
"name": "@olehan/next.go",
"private": true,
"description": "POC of a Next.js project that uses Golang written code on server using node-gyp and WASM on client",
"homepage": "https://github.com/olehan/next.go#readme",
"bugs": {
"url": "https://github.com/olehan/next.go/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/olehan/next.go.git"
},
"license": "MIT",
"author": "@olehan <[email protected]>",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn packages/app build",
"compile": "yarn lerna run compile --parallel",
"postinstall": "husky install",
"lint": "yarn eslint --max-warnings 0 packages",
"lint-staged": "yarn eslint --cache --max-warnings 0",
"start": "yarn packages/app start",
"test:unit": "yarn packages/add.node test",
"test:e2e": "yarn packages/app test"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional",
"@commitlint/config-lerna-scopes"
]
},
"lint-staged": {
"packages/**/*.[jt]s?(x)": [
"yarn lint-staged"
]
},
"eslintConfig": {
"extends": [
"@azimutlabs/eslint-config"
],
"rules": {
"no-undef": "off",
"no-console": "off",
"react/jsx-no-literals": "off",
"jest/expect-expect": "off"
}
},
"eslintIgnore": [
"**/wasm_exec.js"
],
"devDependencies": {
"@azimutlabs/eslint-config": "^0.9.0",
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@commitlint/config-lerna-scopes": "^12.0.1",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"eslint": "^7.23.0",
"eslint-plugin-functional": "^3.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lerna": "^4.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"react": "^17.0.2",
"typescript": "^4.2.3"
}
}