-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.01 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
{
"name": "elements",
"version": "1.0.1",
"description": "Three Dee for everyone",
"scripts": {
"main": "node ./src/app.js",
"buildDev": "mkdir -p src/public/js && browserify src/controller/editor.js -o src/public/js/editor.js",
"build": "mkdir -p src/public/js && browserify src/controller/editor.js | uglifyjs -c --screw-ie8 > src/public/js/editor.js",
"start": "nodemon ./src/app.js",
"dev": "npm run buildDev && npm start"
},
"author": "Alec Molloy",
"repository": {
"type": "git",
"url": "https://github.com/alecmolloy/elements-editor"
},
"license": "Unlicense",
"dependencies": {
"cli-color": "^1.4.0",
"coffeescript": "2.3.2",
"color": "3.1.0",
"compression": "1.7.4",
"express": "4.18.3",
"morgan": "1.10.0",
"pm2": "5.3.1",
"pug": "^2.0.3",
"simplex-noise": "4.0.1",
"three": "0.98.0",
"three-orbit-controls": "82.1.0",
"uglify-js": "^3.17.4"
},
"devDependencies": {
"browserify": "^16.2.3",
"nodemon": "3.1.0"
}
}