This repository was archived by the owner on Mar 23, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.06 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
{
"name": "apollo-accounts-server",
"version": "0.0.1",
"description": "",
"main": "dist/index.js",
"scripts": {
"lint": "eslint src/ test/",
"pretest": "npm run lint --silent",
"test": "npm run testonly",
"prepublish": "npm run bundle",
"testonly": "mocha --compilers js:babel-core/register --reporter spec --full-trace 'test/**/*.js'",
"bundle": "NODE_ENV=production webpack -p --config --progress",
"dev": "NODE_ENV=production webpack -p --config --progress --watch",
"debug": "NODE_ENV=development webpack --config --progress --watch"
},
"repository": {
"type": "git",
"url": "TimMikeladze/apollo-accounts-server"
},
"author": "Tim Mikeladze",
"license": "MIT",
"dependencies": {
"babel-polyfill": "^6.13.0",
"bcryptjs": "^2.3.0",
"chai": "^3.5.0",
"chai-spies": "^0.7.1",
"client-sessions": "^0.7.0",
"express": "^4.14.0",
"express-session": "^1.14.1",
"extendify": "^1.0.0",
"grant-express": "^3.6.3",
"jsonwebtoken": "^7.1.9",
"koa": "^1.2.4",
"lodash": "^4.15.0",
"request-promise": "^4.1.1"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.14.0",
"babel-preset-stage-0": "^6.5.0",
"chai-as-promised": "^5.3.0",
"eslint": "^3.3.1",
"eslint-config-airbnb": "^10.0.1",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^2.1.0",
"eslint-plugin-react": "^6.1.2",
"file-loader": "^0.9.0",
"json-loader": "^0.5.4",
"mocha": "^3.0.2",
"url-loader": "^0.5.7",
"webpack": "^1.13.2",
"webpack-node-externals": "^1.3.3"
},
"eslintConfig": {
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"extends": [
"airbnb",
"plugin:import/errors",
"plugin:import/warnings"
],
"plugins": [
"babel",
"jsx-a11y",
"react"
],
"env": {
"mocha": true
}
}
}