-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.41 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": "oiler",
"version": "1.1.0",
"description": "Helper to create basic SPA using React, Baobab and Fetchery",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint src/** dev/** --ext ts,tsx,json",
"dev": "ts-node dev/server.ts",
"build": "rm -rf dist && tsc"
},
"author": "",
"license": "MIT",
"dependencies": {
"baobab": "^2.6.1",
"baobab-react": "^4.0.2",
"baobab-router": "^2.4.0",
"fetchery": "^0.2.0",
"node-polyglot": "^2.4.2"
},
"peerDependencies": {
"react": "17.x",
"react-dom": "17.x"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node-polyglot": "^2.4.2",
"@types/parcel-bundler": "^1.12.4",
"@types/react": "^17.0.19",
"@types/react-dom": "^17.0.9",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-html": "^6.1.2",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"express": "^4.17.1",
"http-proxy-middleware": "^1.3.1",
"parcel-bundler": "^1.12.5",
"parcel-plugin-asset-copier": "^1.1.0",
"prettier": "^2.3.2",
"ts-node": "^9.1.1",
"typescript": "^4.3.5",
"uuid": "^8.3.2"
},
"browserslist": [
"last 3 Chrome versions"
]
}