-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
72 lines (72 loc) · 2.24 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "user-agent.io",
"version": "3.0.0",
"description": "Reports your browser's User-Agent string and, with a special link, that of other browsers",
"main": "src/server.js",
"private": true,
"scripts": {
"test": "npm run lint && npm run test-e2e",
"lint": "eslint . --cache",
"test-e2e": "npm run build && node e2e-runner.js",
"autofix": "eslint . --fix",
"dev": "nf start",
"build": "next build && npm run sass-build",
"sass-build": "node-sass static/style.scss --output-style compressed --include-path node_modules/bootstrap/scss/ static/style.css",
"sass-dev": "node-sass static/style.scss --output-style expanded --watch --error-bell static/style.css",
"deploy": "npm run build && cf zero-downtime-push user-agent -f manifest.yml",
"start": "NODE_ENV=production node src/server.js"
},
"engines": {
"node": "7"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nfriedly/user-agent.io.git"
},
"author": "Nathan Friedly (http://www.nfriedly.com/)",
"license": "AGPL",
"bugs": {
"url": "https://github.com/nfriedly/user-agent.io/issues"
},
"homepage": "https://user-agent.io/",
"dependencies": {
"body-parser": "^1.17.1",
"cookie-session": "^2.0.0-beta.1",
"dotenv": "^4.0.0",
"express": "^4.15.2",
"express-ws": "^3.0.0",
"lodash": "^4.17.4",
"nano": "^6.2.0",
"next": "^2.3.0-alpha1",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"random-in-range": "^1.0.3",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-google-ad": "^1.0.2",
"react-timeago": "^3.3.0",
"ua-parser-js": "^0.7.12",
"uuid": "^3.0.1",
"vcap_services": "^0.3.4",
"ws": "^2.3.1"
},
"optionalDependencies": {
"bufferutil": "^3.0.0",
"utf-8-validate": "^3.0.1"
},
"devDependencies": {
"bootstrap": "^4.0.0-alpha.6",
"eslint": "^3.19.0",
"eslint-config-google": "^0.7.1",
"eslint-config-prettier": "^1.7.0",
"eslint-plugin-prettier": "^2.0.1",
"eslint-plugin-react": "^6.10.3",
"foreman": "^2.0.0",
"geckodriver": "^1.6.1",
"nightwatch": "^0.9.15",
"node-sass": "^4.5.2",
"nodemon": "^1.11.0",
"prettier": "^1.3.1",
"selenium-server-standalone-jar": "^3.4.0"
}
}