-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 loc) · 905 Bytes
/
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
{
"name": "sashido-nextjs-boilerplate",
"version": "1.0.0",
"description": "My Development Parse Server with CloudCode & NextJS",
"main": "index.js",
"scripts": {
"dev": "NODE_ENV=development nodemon index.js",
"start": "NODE_ENV=production node index.js",
"build": "NODE_ENV=production next build",
"postinstall": "if [ \"$install\" != \"1\" ]; then export install=\"1\" && npm run build; fi"
},
"author": "SashiDo Team",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git@github.com:SashiDo/sashido-nextjs-boilerplate.git"
},
"bugs": {
"url": "https://github.com/SashiDo/sashido-nextjs-boilerplate"
},
"devDependencies": {
"nodemon": "^2.0.14",
"parse": "^2.3.0",
"parse-server": "^3.1.3"
},
"dependencies": {
"express": "^4.17.1",
"next": "^11.1.2",
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}