-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.62 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.62 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
51
52
53
54
55
56
57
{
"name": "isup",
"version": "0.1.0",
"description": "Uptime monitor and visual website tester",
"main": "index.js",
"dependencies": {
"cookie-parser": "^1.4.5",
"express": "^4.17.1",
"express-request-language": "^1.1.15",
"i18n": "^0.13.2",
"ioredis": "^4.17.3",
"nodejs": "0.0.0",
"prismic-dom": "^2.2.4",
"prismic.io": "^3.6.1",
"pug": "^3.0.0",
"puppeteer-core": "^5.3.1"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"concurrently": "^5.3.0",
"dotenv": "^8.2.0",
"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"
},
"scripts": {
"build": "grunt build",
"start": "node --optimize_for_size --max_old_space_size=460 --gc_interval=100 index.js",
"dev": "concurrently \"npm run server:dev\" \"npm run client:dev\"",
"client:dev": "grunt dev",
"server:dev": "nodemon -r dotenv/config --optimize_for_size --max_old_space_size=460 --gc_interval=100 index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fivebyfive-se/isup.git"
},
"keywords": [
"uptime",
"visual",
"testing",
"website",
"automation"
],
"author": "Kalle Räisänen <kalle@fivebyfive.se>",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/fivebyfive-se/isup/issues"
},
"homepage": "https://github.com/fivebyfive-se/isup#readme"
}