-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
96 lines (96 loc) · 2.31 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
88
89
90
91
92
93
94
95
96
{
"name": "web-rebels-2017",
"version": "1.0.0",
"author": {
"name": "Web Rebels",
"email": "[email protected]"
},
"description": "The Web Rebels 2017 web site",
"mod-project-name": "web-rebels-www",
"main": "./bin/server.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:webrebels/web-rebels-2017.git"
},
"keywords": [
"conference",
"javascript",
"web"
],
"homepage": "https://webrebels.org/",
"scripts": {
"postinstall": "npm run build",
"build": "NODE_ENV=production webpack -p --config ./tools/webpack.config.js && cp src/favicon* public",
"start-dev": "nf start -j Procfile.dev",
"start": "node ./bin/server.js",
"lint:js": "eslint . --ignore-path .gitignore",
"lint:scss": "sass-lint -c src/scss/.sass-lint.yml -v -q",
"test": "npm run lint:js && npm run lint:scss"
},
"contributors": [
{
"name": "Trygve Lie",
"email": "[email protected]"
},
{
"name": "Espen Dalløkken",
"email": "[email protected]"
},
{
"name": "Bodil Stokke",
"email": "[email protected]"
},
{
"name": "Anders Olsen Sandvik",
"email": "[email protected]"
}
],
"engines": {
"node": "7.3.0"
},
"bugs": {
"url": "https://github.com/webrebels/web-rebels-2017/issues"
},
"devDependencies": {
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.9.0",
"nodemon": "^1.11.0",
"sass-lint": "^1.10.2",
"webpack-dev-server": "^1.16.0"
},
"dependencies": {
"autoprefixer": "^6.7.2",
"body": "5.1.0",
"bole": "3.0.2",
"compression": "1.6.2",
"convict": "2.0.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.26.1",
"express": "4.14.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.10.0",
"foreman": "^2.0.0",
"hbs": "4.0.1",
"helmet": "3.4.0",
"node-sass": "^4.1.1",
"postcss-loader": "^1.1.1",
"sass-loader": "^4.0.2",
"serve-static": "1.11.2",
"style-loader": "^0.13.1",
"tba.js": "^1.1.0",
"webpack": "^1.13.3"
},
"eslintConfig": {
"extends": "airbnb",
"rules": {
"indent": [
"error",
4
]
}
}
}