-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.7 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
{
"name": "meesterproef-adamnet",
"version": "1.0.0",
"description": "application that will tell the story of the Amsterdammer",
"main": "app.js",
"scripts": {
"start": "node app.js",
"build-sass": "node-sass --include-path scss sass/main.scss public/css/main.css",
"watch-sass": "node-sass -w --include-path scss sass/main.scss public/css/main.css",
"build-js": "npm run build-main-js | npm run build-create-story-js",
"watch-js": "npm run watch-main-js | npm run watch-create-story-js",
"build-main-js": "browserify public/js/main.js -o public/dist/bundle/main.js",
"watch-main-js": "watchify public/js/main.js -o public/dist/bundle/main.js -dv",
"build-create-story-js": "browserify public/js/create-story.js -o public/dist/bundle/create-story.js",
"watch-create-story-js": "watchify public/js/create-story.js -o public/dist/bundle/create-story.js -dv",
"build": "npm run build-sass | npm run build-js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/s44s/meesterproef-adamnet.git"
},
"author": "suustenvoorde",
"license": "ISC",
"dependencies": {
"@turf/turf": "^5.1.6",
"body-parser": "^1.19.0",
"browserify": "^16.5.1",
"circle-to-polygon": "^1.0.2",
"ejs": "^2.7.4",
"express": "^4.17.1",
"express-session": "^1.17.1",
"mongodb": "^3.5.8",
"netlify-lambda": "^1.6.3",
"node-fetch": "^2.6.0",
"node-sass": "^4.14.1",
"probe-image-size": "^5.0.0",
"serverless-http": "^2.5.0",
"shortid": "^2.2.15",
"uuid": "^3.4.0",
"webpack-node-externals": "^1.7.2",
"wellknown": "^0.5.0"
},
"devDependencies": {
"dotenv": "^5.0.1",
"nodemon": "^1.19.4",
"watchify": "^3.11.1"
}
}