-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 979 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 979 Bytes
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
{
"name": "react-by-example",
"version": "1.0.0",
"engines": {
"node": ">=12",
"pnpm": ">=5"
},
"scripts": {
"start": "pnpm --parallel start",
"test": "pnpm --parallel test",
"build": "pnpm -r build",
"pre-gatsby": "pnpm --filter \"@app/gatsby^...\"",
"gatsby": "pnpm --filter \"@app/gatsby\"",
"build-requirements": "pnpm run pre-gatsby -- run build",
"start-gatsby": "pnpm run gatsby -- run start"
},
"license": "MIT",
"devDependencies": {
"@types/eslint": "7.2.1",
"@typescript-eslint/eslint-plugin": "3.10.1",
"@typescript-eslint/parser": "3.10.1",
"eslint": "7.8.1",
"eslint-config-airbnb": "18.2.0",
"eslint-config-airbnb-typescript": "9.0.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-react-hooks": "4.1.0",
"eslint-plugin-react": "7.20.6",
"prettier": "2.1.1",
"typescript": "4.0.2"
}
}