-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
39 lines (39 loc) · 1.08 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
{
"name": "Nimp",
"version": "0.1.0",
"description": "Node-based image manipulation program.",
"main": "index.js",
"scripts": {
"next": "next dev",
"dev": "cross-env API_URL=http://localhost:3000 MONGO_URL=mongodb://localhost NODE_ENV=development nodemon server/index.js --watch server",
"build": "next build",
"start": "NODE_ENV=production node server/index.js"
},
"author": "Dan",
"license": "MIT",
"dependencies": {
"@zeit/next-css": "^1.0.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"bson-objectid": "^1.3.0",
"connect-mongodb-session": "^3.1.1",
"copy-to-clipboard": "^3.2.0",
"express": "^4.17.1",
"express-session": "^1.17.0",
"isomorphic-unfetch": "^3.0.0",
"jimp": "0.8.5",
"lodash.debounce": "^4.0.8",
"mongodb": "^3.3.3",
"next": "^13.3.0",
"normalize.css": "^8.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"simplex-noise": "^2.4.0",
"tinycolor2": "^1.4.1",
"worley-noise": "^2.0.1"
},
"devDependencies": {
"cross-env": "^6.0.3",
"nodemon": "^2.0.21"
}
}