-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.4 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.4 KB
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
{
"name": "@mathio28/next-api",
"version": "0.0.0",
"main": "index.js",
"types": "index.d.ts",
"license": "MIT",
"author": "matej@lednicky.name",
"homepage": "https://github.com/mathio/next-api",
"description": "The \"no api\" api for Next.js apps.",
"repository": {
"type": "git",
"url": "git+https://github.com/mathio/next-api.git"
},
"engines": {
"node": ">=12"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "next dev ./next-integration",
"ci": "start-server-and-test dev http://localhost:3000 test",
"test": "jest",
"clean": "rm -rf ./lib",
"build": "babel src -d lib",
"build:watch": "yarn build --watch",
"prettier": "prettier --write . --ignore-path .gitignore",
"postinstall": "node install/postinstall.js",
"prepare": "husky install"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/plugin-transform-react-jsx": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"husky": "^7.0.4",
"isomorphic-unfetch": "^3.1.0",
"jest": "^26.6.1",
"next": "^10.0.0",
"nodemon": "^2.0.6",
"prettier": "^2.1.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"semantic-release": "^17.3.9",
"start-server-and-test": "^1.11.5"
},
"dependencies": {
"bcrypt": "^5.0.1",
"dotenv": "^10.0.0",
"mongodb": "^4.2.0",
"uid-generator": "^2.0.0"
}
}