-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
115 lines (115 loc) · 3.29 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
{
"name": "toflit18",
"version": "1.0.0",
"private": true,
"description": "TOFLIT18's datascape.",
"main": "index.js",
"scripts": {
"build": "kotatsu build server --babel --no-source-maps ./scripts/start.js -o ./build/toflit18.js",
"dev": "kotatsu start --progress -s --babel ./scripts/start.js",
"export": "kotatsu run --babel -s ./scripts/export.js",
"import": "kotatsu run --babel -s ./scripts/import.js",
"indices": "kotatsu run --babel -s ./scripts/indices.js",
"lint": "eslint --ext .js --ext .jsx ./api ./lib ./test ./scripts ./client/js",
"lint-fix": "eslint --fix --ext .js --ext .jsx ./api ./lib ./test ./scripts ./client/js",
"postinstall": "mkdir -p .output",
"quantities": "kotatsu run --babel -s ./scripts/quantities.js",
"rewire": "kotatsu --babel run --progress --source-maps ./scripts/rewire.js",
"start": "kotatsu run --babel ./scripts/start.js",
"test": "mocha -R spec --compilers js:babel-core/register ./test/endpoint.js",
"prettify": "prettier --write --config .prettierrc.json ./api/**/*.js* ./lib/**/*.js* ./test/**/*.js* ./scripts/**/*.js* ./client/js/**/*.js*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/medialab/toflit18.git"
},
"keywords": [
"datascape",
"toflit18"
],
"contributors": [
{
"name": "Paul Girard",
"url": "https://github.com/paulgirard"
},
{
"name": "Guillaume Plique",
"url": "https://github.com/Yomguithereal"
}
],
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/medialab/toflit18/issues"
},
"homepage": "https://github.com/medialab/toflit18#readme",
"dependencies": {
"async": "^2.1.4",
"body-parser": "^1.13.3",
"compression": "^1.5.2",
"config": "^1.26.1",
"cookie-parser": "^1.3.5",
"cors": "^2.7.1",
"csv": "^1.1.1",
"decypher": "^0.13.0",
"dolman": "^0.4.0",
"express": "^4.13.3",
"express-session": "^1.11.3",
"gitlog": "^4.0.3",
"graphology": "^0.11.4",
"graphology-communities-louvain": "^0.1.1",
"highland": "^2.5.1",
"lodash": "^4.17.4",
"mnemonist": "^0.22.0",
"morgan": "^1.6.1",
"neo4j-driver": "^1.2.0",
"prettier": "^1.19.1",
"session-file-store": "^1.0.0",
"yargs": "^3.14.0"
},
"devDependencies": {
"@yomguithereal/eslint-config": "^4.0.0",
"babel-eslint": "^8.1.1",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-2": "^6.3.13",
"cypher-loader": "^0.3.0",
"eslint": "^4.1.1",
"eslint-plugin-react": "^7.1.0",
"kotatsu": "^0.15.2",
"mocha": "^3.1.0"
},
"babel": {
"presets": [
"es2015",
"stage-2"
]
},
"eslintConfig": {
"extends": [
"@yomguithereal/eslint-config/es7",
"@yomguithereal/eslint-config/react"
],
"globals": {
"sigma": true,
"CONFIG": true
},
"rules": {
"no-return-assign": 0,
"react/forbid-prop-types": 0,
"react/jsx-indent": 0,
"react/jsx-no-bind": 0,
"react/jsx-closing-bracket-location": [
1,
"tag-aligned"
],
"react/no-set-state": 0,
"react/no-string-refs": 0,
"react/prefer-stateless-function": 0,
"react/require-optimization": 0,
"quotes": 0,
"quote-props": [
1,
"as-needed"
]
}
}
}