-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.51 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
{
"name": "@camplight/backpack",
"version": "0.2.0",
"author": "Camplight",
"license": "MIT",
"description": "Backpack utilities for code camping",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"keywords": [
"camplight",
"backpack",
"nodejs",
"nextjs",
"react"
],
"homepage": "https://github.com/camplight/backpack#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/camplight/backpack.git"
},
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"peerDependencies": {},
"dependencies": {
"next": "^9.3.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-hook-form": "^5.4.2",
"@material-ui/core": "^4.9.10",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.49",
"lodash": "^4.17.15"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@types/lodash": "^4.14.149",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-transform-imports": "^2.0.0",
"babel-plugin-transform-inline-environment-variables": "^0.4.3",
"babel-plugin-module-resolver": "^4.0.0",
"babel-preset-next": "1.2.0",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"prettier": "^2.0.4",
"typescript": "^3.8.3"
}
}