-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.88 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.88 KB
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
{
"name": "memento",
"version": "1.0.0",
"description": "Memento: The Video Memory Game",
"private": true,
"scripts": {
"start": "node ./bin/www",
"build": "webpack --config=webpack.prod.js",
"watch": "webpack --config=webpack.dev.js --watch",
"dev": "concurrently \"npm run start\" \"npm run watch\"",
"prod": "npm run build && npm start",
"test": "jest",
"lint": "concurrently \"npm run lint-js\" \"npm run lint-css\"",
"lint-js": "eslint ui-js-src api",
"lint-css": "stylelint public/css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cfosco/video-mem-annot.git"
},
"author": "Computational Perception & Cognition Group (CSAIL, MIT)",
"license": "MIT",
"bugs": {
"url": "https://github.com/cfosco/video-mem-annot/issues"
},
"homepage": "https://github.com/cfosco/video-mem-annot#readme",
"dependencies": {
"@babel/polyfill": "^7.4.0",
"cookie-parser": "^1.4.4",
"d3-axis": "^1.0.12",
"d3-format": "^1.3.2",
"d3-scale": "^3.0.0",
"d3-selection": "^1.4.0",
"d3-shape": "^1.3.4",
"debug": "^4.1.1",
"express": "^4.16.4",
"express-useragent": "^1.0.12",
"forever": "^0.15.3",
"morgan": "^1.9.1",
"objectFitPolyfill": "^2.1.1",
"promise-mysql": "^3.3.1",
"url-search-params-polyfill": "^5.0.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"babel-loader": "^8.0.5",
"concurrently": "^4.1.0",
"eslint": "^5.15.3",
"eslint-plugin-compat": "^2.7.0",
"jest": "^24.1.0",
"stylelint": "^9.10.1",
"stylelint-config-recommended": "^2.1.0",
"stylelint-no-unsupported-browser-features": "^3.0.2",
"supertest": "^3.4.2",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-merge": "^4.2.1"
},
"browserslist": [
"defaults",
"not op_mini all"
]
}