-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.09 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
{
"name": "k-app",
"description": "K-App provide a large panel of useful tools for associations",
"private": true,
"license": "Apache-2.0",
"contributors": [
"Corentin Giraud <[email protected]>",
"Marc-Antoine Fernandes <[email protected]>",
"Baptiste Viry",
"Clément Guittat",
"Mickael Gadou"
],
"repository": {
"type": "git",
"url": "https://github.com/K-Fet/K-App"
},
"bugs": {
"url": "https://github.com/K-Fet/K-App/issues"
},
"workspaces": [
"packages/*"
],
"scripts": {
"dev:back": "yarn workspace k-app-server run dev:back",
"dev:front": "yarn workspace k-app-client start",
"cli": "yarn workspace k-app-cli run cli",
"test:lint": "eslint .",
"test:integration": "true"
},
"dependencies": {},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.4.0",
"@typescript-eslint/parser": "^2.4.0",
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.19.0"
},
"engines": {
"node": ">=12.0.0"
}
}