-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
118 lines (118 loc) · 2.98 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "ceres-framework",
"version": "1.4.3",
"description": "Node.js Framework for React Applications",
"main": "src/index.js",
"bin": {
"ceres": "./cli/index.js"
},
"scripts": {
"coverage": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"lint:fix": "npm run lint -- --fix",
"lint": "eslint cli/ src/ config/",
"pretest": "npm run lint",
"test:watch": "npm test -- --watch",
"test": "jest"
},
"author": "Isaac Suttell <[email protected]>",
"contributors": [
"Isaac Suttell <[email protected]>",
"Sepand Assadi <[email protected]>",
"Jared Boone <[email protected]>",
"Chris Orescan <[email protected]>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ship-components/ceres-framework.git"
},
"engines": {
"node": ">=8"
},
"lint-staged": {
"{cli,src,config}/**/*.js": [
"eslint --fix --quiet"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test -- --coverage=false"
}
},
"dependencies": {
"async": "0.9.2",
"base32": "0.0.6",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"commander": "^2.19.0",
"compression": "^1.7.4",
"connect-redis": "^3.4.0",
"cookie-parser": "^1.4.5",
"ejs": "^2.7.1",
"express": "^4.17.1",
"express-session": "^1.17.0",
"hashids": "^1.2.2",
"lodash": "^4.17.15",
"mkdirp": "^0.5.1",
"moment": "^2.24.0",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"redis": "^2.7.1",
"response-time": "^2.3.2",
"uuid": "^3.3.3",
"winston": "^2.4.3",
"youch": "^2.0.10"
},
"optionalDependencies": {
"bookshelf": "^0.15.1",
"express-socket.io-session": "^1.3.1",
"knex": "^0.19.5",
"mongodb": "^2.2.11",
"pg": ">=7.3.0",
"pg-live-select": ">=1.0.3",
"react": "^15 || ^16",
"react-dom": "^15 || ^16",
"rethinkdb": ">=2.3.0",
"socket.io": "^1.5.1",
"sticky-session": "^1.1.2",
"webpack": "^1.13.3",
"webpack-dev-middleware": "^1.10.2"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"coveralls": "^3.0.11",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.3",
"jest": "^24.9.0",
"jest-junit": "^9.0.0",
"lint-staged": "^10.1.0",
"prettier": "^1.18.2"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "./coverage",
"testMatch": [
"**/*_spec.js"
],
"collectCoverageFrom": [
"src/**/*.js"
]
},
"jest-junit": {
"suiteName": "ceres-framework Tests",
"reporters": [
"default",
"jest-junit"
],
"output": "./test-reports/junit.xml",
"classNameTemplate": "{classname}-{title}",
"titleTemplate": "{classname}-{title}",
"ancestorSeparator": " › ",
"usePathForSuiteName": "true"
}
}