-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
67 lines (67 loc) · 2.07 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
{
"name": "PaperBadger",
"version": "0.1.1",
"description": "Exploring the use of digital badges for crediting contributors to scholarly papers for their work",
"main": "src/index.js",
"scripts": {
"start": "npm-run-all --parallel server watch:js",
"build:js": "webpack --config webpack.config.js --progress --profile --colors",
"watch:js": "npm run build:js -- --watch",
"clean": "rm -r public/js/*",
"server": "node src/index.js",
"eslint": "eslint --config .eslintrc.yaml src webpack.config.js public/widgets/widget.js",
"eslint:test": "eslint --config .eslintrc.yaml test",
"lint": "npm run eslint && npm run eslint:test",
"build:production": "npm run build:js -- --optimize-minimize --optimize-dedupe",
"start:production": "npm-run-all build:production server",
"test:integration": "mocha -t 4000 test/integration",
"test:unit": "mocha test/unit",
"test": "mocha -t 4000 test/*"
},
"dependencies": {
"babel-loader": "^5.0.0",
"badgekit-api-client": "https://github.com/mozilla/badgekit-api-client/tarball/v0.2.4",
"body-parser": "^1.13.2",
"connect-redis": "^3.0.1",
"es5-shim": "^4.1.1",
"exports-loader": "^0.6.2",
"express": "~4.13.x",
"express-session": "~1.11.2",
"habitat": "^3.1.2",
"imports-loader": "^0.6.4",
"pug": "^2.0.0-alpha8",
"jsx-loader": "^0.13.2",
"mofo-style": "^2.3.0",
"mongoose": "^4.1.4",
"nodemailer": "^1.4.0",
"nodemailer-ses-transport": "^1.3.0",
"npm-run-all": "^1.2.4",
"react": "^0.13.2",
"react-checkbox-group": "^0.1.9",
"react-router": "^0.13.3",
"shortid": "^2.2.2",
"simple-oauth2": "0.5.1",
"webpack": "^1.8.11",
"whatwg-fetch": "^0.9.0",
"validator": "^5.2.0"
},
"devDependencies": {
"eslint": "^2.3.0",
"mocha": "^2.2.5",
"nock": "^2.3.0",
"supertest": "^1.0.1"
},
"engines": {
"node": "4.4.5"
},
"repository": {
"type": "git",
"url": "https://github.com/mozillascience/PaperBadger"
},
"keywords": [
"badges",
"science",
"node"
],
"license": "MPL-2.0"
}