-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 2.08 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
{
"name": "la-ferme",
"private": true,
"license": "MIT",
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"bootstrap": "lerna bootstrap",
"postinstall": "yarn bootstrap",
"heroku-postbuild": "yarn build:server",
"build": "run-p build:**",
"build:components": "yarn --cwd packages/components build",
"build:website": "yarn --cwd packages/website build",
"build:server": "yarn --cwd packages/server build",
"components": "yarn --cwd packages/components dev",
"dev": "run-p dev:**",
"dev:components": "yarn --cwd packages/components dev:compile",
"dev:mobile": "yarn --cwd packages/mobile dev",
"dev:server": "yarn --cwd packages/server dev",
"server": "yarn --cwd packages/server start",
"lint": "lerna run lint",
"test:setup": "lerna run test:setup",
"test": "lerna run test"
},
"dependencies": {
"@react-native-community/eslint-config": "^1.0.0",
"@types/jest": "^25.1.4",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-config-standard": "^14.1.0",
"eslint-config-standard-react": "^9.2.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^2.5.0",
"eslint-plugin-standard": "^4.0.1",
"jest": "^25.1.0",
"lerna": "^3.20.2",
"lodash.merge": "^4.6.2",
"npm-run-all": "^4.1.5",
"stylelint": "^13.2.1",
"stylelint-config-prettier": "^8.0.1",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0",
"typescript": "^3.8.3"
},
"authors": [
"Bastien Robert <[email protected]> (https://bastienrobert.fr)",
"Mathieu Harribey (https://mathieuharribey.com)"
]
}