-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.02 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.02 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "spotify-network-explore",
"version": "1.0.0",
"description": "Explore playlists with a network view animated over time",
"main": "src/server/index.ts",
"repository": "https://github.com/jamjar919/spotify-network-explore.git",
"author": "James Paterson <james@mjsquare.com>",
"license": "None",
"private": true,
"dependencies": {
"@headlessui/react": "^1.4.1",
"@material-ui/core": "^4.12.3",
"@types/react-redux": "^7.1.18",
"@types/redux": "^3.6.0",
"@types/redux-thunk": "^2.1.0",
"@types/url-search-params": "^1.1.0",
"array-dedupe": "^1.2.0",
"classnames": "^2.3.1",
"cookie-parser": "^1.4.5",
"crypto-random-string": "^4.0.0",
"express": "^4.17.1",
"moment": "^2.29.1",
"node-fetch": "^3.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.5",
"react-sigma": "^1.2.35",
"redux": "^4.1.1",
"redux-devtools-extension": "^2.13.9",
"redux-thunk": "^2.3.0",
"sigma": "^2.0.0-beta9",
"url-search-params": "^1.1.0",
"uuid": "^8.3.2"
},
"scripts": {
"build": "npm-run-all assemble test",
"assemble": "npm-run-all build:server build:client",
"test": "jest",
"start": "node ./dist/server.js",
"build:server": "npx webpack --config webpack.config.server.js",
"build:server:dev": "npx webpack -w --config webpack.config.server.js",
"build:client": "npx webpack --config webpack.config.client.js",
"build:client:dev": "npx webpack -w --config webpack.config.client.js"
},
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.4",
"@babel/preset-react": "^7.14.5",
"@svgr/webpack": "^5.5.0",
"@types/classnames": "^2.3.1",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.13",
"@types/jasmine": "^3.9.0",
"@types/jest": "^27.0.1",
"@types/moment": "^2.13.0",
"@types/node-fetch": "^3.0.3",
"@types/react": "^17.0.20",
"@types/react-dom": "^17.0.9",
"@types/react-test-renderer": "^17.0.1",
"@types/spotify-api": "^0.0.11",
"@types/uuid": "^8.3.1",
"babel-jest": "^27.1.0",
"babel-loader": "^8.2.2",
"css-loader": "^6.2.0",
"dotenv": "^10.0.0",
"graphology-types": "^0.19.4",
"html-webpack-plugin": "^5.3.2",
"identity-obj-proxy": "^3.0.0",
"jasmine": "^3.9.0",
"jest": "^27.1.0",
"mini-css-extract-plugin": "^2.2.2",
"nodemon": "^2.0.12",
"nodemon-webpack-plugin": "^4.5.2",
"npm-run-all": "^4.1.5",
"prop-types": "^15.7.2",
"react-test-renderer": "^17.0.2",
"rimraf": "^3.0.2",
"sass": "^1.39.0",
"sass-loader": "^12.1.0",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.5",
"typescript": "^4.4.2",
"webpack": "^5.52.0",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.1.1"
},
"engines": {
"node": ">=14.15.0"
},
"jest": {
"moduleNameMapper": {
"\\.(css|less)$": "identity-obj-proxy"
}
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/react"
]
}
}