-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.33 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.33 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
{
"name": "shrrl",
"version": "1.0.2",
"description": "URL shortener",
"main": "index.js",
"scripts": {
"build": "grunt build",
"dev": "nodemon --optimize_for_size --max_old_space_size=460 --gc_interval=100 index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"url",
"short",
"url-shortener"
],
"author": "Kalle Räisänen <kalle@kalle.surf>",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"connect-redis": "^5.0.0",
"crypto-random-string": "^3.3.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-redis-cache": "^1.1.3",
"express-session": "^1.17.1",
"i18n": "^0.8.6",
"ioredis": "^4.17.3",
"passport": "^0.4.1",
"passport-auth0": "^1.3.3",
"path": "^0.12.7",
"prismic-dom": "^2.2.4",
"prismic.io": "^3.6.1",
"pug": "^2.0.4",
"url-parse": "^1.4.7"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-transform-async-to-generator": "^7.10.4",
"@babel/plugin-transform-regenerator": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"grunt": "^1.3.0",
"grunt-babel": "^8.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-sass": "^3.1.0",
"load-grunt-tasks": "^5.1.0",
"node-sass": "^4.14.1",
"nodemon": "^2.0.4"
}
}