-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.25 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "site",
"version": "0.58.0",
"main": "index.js",
"repository": "[email protected]:we-code-this/channel-zero.git",
"author": "Michael Gregoire <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"test": "NODE_ENV=test jest --watch --verbose=false",
"test-ci": "NODE_ENV=test jest --ci --verbose=false",
"dev": "node server.js",
"build": "next build",
"start": "NODE_ENV=production node server.js"
},
"nyc": {
"exclude": [
"models/utilities.js",
"server.js",
"pages/_app.js",
"next.config.js",
"mocha.setup.js",
"coverage/**",
"test/**",
"test{,-*}.js",
"**/*.test.js",
"**/__tests__/**",
"**/node_modules/**"
],
"require": [
"@babel/register"
],
"reporter": [
"lcov"
],
"sourceMap": false,
"instrument": false
},
"dependencies": {
"@babel/core": "^7.2.2",
"@babel/register": "^7.0.0",
"@fortawesome/fontawesome-pro": "^5.6.3",
"@zeit/next-sass": "^1.0.1",
"acorn": "^6.1.0",
"bulma": "^0.7.2",
"cacheable-response": "^1.10.0",
"dotenv": "^6.2.0",
"esm": "^3.0.84",
"express": "^4.16.4",
"fs-extra": "^7.0.1",
"he": "^1.2.0",
"http-proxy-middleware": "^0.20.0",
"iltorb": "2.4.4",
"isomorphic-unfetch": "^3.0.0",
"keyv": "^4.0.0",
"markdown-to-jsx": "^6.9.0",
"moment": "^2.24.0",
"next": "^7.0.2",
"next-routes": "^1.4.2",
"node-sass": "^4.11.0",
"normalize-url": "^4.5.0",
"normalize.css": "^8.0.0",
"react": "^16.7.0",
"react-bulma-components": "^2.3.0",
"react-dom": "^16.7.0",
"remove-markdown": "^0.3.0",
"url": "^0.11.0",
"yarn": "^1.12.3"
},
"devDependencies": {
"babel-plugin-istanbul": "^5.1.0",
"chai": "^4.2.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.15.1",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-standard": "^4.0.1",
"jest": "^24.9.0",
"nyc": "^13.1.0",
"prettier": "^2.0.2"
}
}