-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 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
88
89
90
91
{
"name": "credibilityio-2015",
"version": "0.14.0",
"description": "Credibility.news",
"private": "true",
"workspaces": [
"backend",
"frontend"
],
"homepage": "https://2015.credibility.news",
"author": {
"name": "alvinsj",
"url": "https://github.com/alvinsj"
},
"repository": {
"type": "git",
"url": "https://github.com/credibilitynews/credibility-2015.git"
},
"license": "MIT",
"engines": {
"node": "12.18.2"
},
"devDependencies": {
"eslint": "^7.4.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"nodemon": "^1.8.1",
"prettier": "^2.0.5"
},
"dependencies": {
"aylien_textapi": "^0.5.0",
"body-parser": "^1.13.3",
"cheerio": "^0.19.0",
"classnames": "^2.1.3",
"compression": "^1.6.0",
"connect-flash": "^0.1.1",
"connect-pg-simple": "^3.0.2",
"ejs": "^2.3.3",
"express": "^4.13.3",
"express-cluster": "0.0.4",
"express-session": "^1.11.3",
"express-sslify": "^0.1.2",
"express-validator": "^2.17.1",
"falcor": "^0.1.12",
"falcor-express": "^0.1.2",
"falcor-http-datasource": "^0.1.2",
"falcor-json-graph": "^1.1.5",
"falcor-router": "^0.2.9",
"flux": "^2.1.1",
"immutable": "^3.8.2",
"invariant": "^2.2.0",
"keymirror": "^0.1.1",
"mandrill-api": "^1.0.45",
"object-assign": "^2.0.0",
"pg": "^4.4.3",
"pg-hstore": "^2.3.2",
"pg-native": "^1.9.0",
"promise": "^7.0.4",
"readable-stream": "^2.0.4",
"redux": "^3.0.4",
"sequelize": "^3.7.1",
"slug": "^0.9.1",
"superagent": "^1.3.0",
"uuid": "^2.0.1"
},
"scripts": {
"start": "yarn workspace backend start",
"build": "yarn workspace frontend build",
"eslint": "eslint frontend/src/js",
"eslint-backend": "eslint backend"
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"testPathDirs": [
"<rootDir>/frontend/__tests__"
],
"testPathIgnorePatterns": [
"pending"
],
"unmockedModulePathPatterns": [
"node_modules",
"react",
"utils",
"__mocks__"
],
"modulePathIgnorePatterns": []
}
}