-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.87 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.87 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "freesound-explorer",
"version": "0.1.0",
"description": "Visual interface for exploring Freesound search results in a 2-dimensional space. For each query, a dimensionality reduction Javascript library ([tSNEJS](https://github.com/karpathy/tsnejs)) is used for arranging the sounds in the 2-dimensional space.",
"main": "src/index.jsx",
"scripts": {
"build": "NODE_ENV=production webpack --mode production",
"with-flask": "NODE_ENV=flask webpack-dev-server --source-maps --progress --colors",
"dev": "node express_server.js",
"eslint": "eslint src/** --ext .js,.jsx",
"test": "jest",
"test-cov": "jest --coverage",
"test-json": "jest --json --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ffont/freesound-explorer.git"
},
"author": "Frederic Font, Giuseppe Bandiera",
"license": "MIT",
"bugs": {
"url": "https://github.com/ffont/freesound-explorer/issues"
},
"homepage": "https://github.com/ffont/freesound-explorer#readme",
"dependencies": {
"core-js": "^3.12.1",
"d3": "^4.2.6",
"d3-selection": "^1.0.2",
"d3-zoom": "^1.0.3",
"dateformat": "^1.0.12",
"density-clustering": "^1.3.0",
"express": "^4.14.0",
"file-loader": "^0.9.0",
"file-saver": "^1.3.8",
"lodash": "^4.17.21",
"normalize.css": "^4.2.0",
"prop-types": "^15.6.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-hot-loader": "^4.13.0",
"react-redux": "^7.2.4",
"react-table": "^6.8.0",
"redux": "^4.1.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"regenerator-runtime": "^0.13.7",
"reselect": "^4.0.0",
"url-loader": "^4.1.1",
"uuid": "^3.2.1",
"webpack": "^4.46.0",
"webpack-dev-middleware": "^3.7.3",
"webpack-hot-middleware": "^2.21.2"
},
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.14.0",
"@babel/preset-env": "^7.14.1",
"@babel/preset-react": "^7.13.13",
"@welldone-software/why-did-you-render": "^6.1.1",
"autoprefixer": "^6.7.7",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"babel-plugin-module-resolver": "^4.1.0",
"css-loader": "^5.2.4",
"deep-freeze": "0.0.1",
"eslint": "^7.26.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-react": "^1.1.7",
"eslint-import-resolver-babel-module": "^5.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"gsap": "^3.6.1",
"jest": "^26.6.3",
"json-loader": "^0.5.7",
"loader-utils": "^2.0.0",
"node-sass-json-importer": "^3.3.1",
"postcss": "^8.2.13",
"postcss-loader": "^4.3.0",
"precss": "^3.1.2",
"sass": "^1.34.0",
"sass-loader": "^10.2.0",
"style-loader": "^2.0.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.7.2"
}
}