This repository has been archived by the owner on Sep 11, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
73 lines (73 loc) · 1.61 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
73
{
"name": "next-bigfive-web",
"version": "1.0.0",
"description": "Website for bigfive personality test using next.js",
"license": "MIT",
"private": true,
"author": {
"name": "Jonas Enge",
"email": "[email protected]",
"url": "https://github.com/maccyber"
},
"contributors": [
{
"name": "Geir Gåsodden",
"email": "[email protected]",
"url": "https://github.com/zrrrzzt"
}
],
"keywords": [
"bigfive",
"personality",
"IPIP"
],
"repository": {
"type": "git",
"url": "https://github.com/maccyber/bigfive-web.git"
},
"bugs": {
"url": "https://github.com/maccyber/bigfive-web/issues"
},
"homepage": "https://github.com/maccyber/bigfive-web",
"devDependencies": {
"ava": "0.18.2",
"coveralls": "2.12.0",
"nsp": "2.6.3",
"nyc": "10.1.2",
"standard": "9.0.2"
},
"now": {
"alias": [
"bigfive.maccyber.io",
"bigfive.world",
"no.bigfive.maccyber.io"
],
"env": {
"NODE_ENV": "production"
},
"type": "npm"
},
"standard": {
"ignore": [
"/static/ga.js"
]
},
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"test": "standard && nsp check && ava",
"test-offline": "standard && ava",
"coverage": "nyc ava",
"coveralls": "nyc ava && nyc report --reporter=lcov && cat coverage/lcov.info | coveralls",
"standard-fix": "standard --fix"
},
"dependencies": {
"axios": "0.15.3",
"country-list": "1.1.0",
"next": "2.0.0",
"react": "15.4.2",
"react-d3": "0.4.0",
"react-dom": "15.4.2"
}
}