forked from 4-ever-young/soundclout-active-player-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.88 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
{
"name": "soundclout-active-player-module",
"version": "1.0.0",
"description": "This features an animated music player at the bottom of the client app.",
"main": "index.js",
"scripts": {
"test": "jest --coverage",
"db": "mysql -u root -p < ./database/data/schema.sql",
"db-nopassword": "mysql -u root < ./database/data/schema.sql",
"build": "webpack",
"start": "nodemon ./server/index.js localhost 3020",
"seed-database": "node database/seed.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LilCare/soundclout-active-player-module.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/LilCare/soundclout-active-player-module/issues"
},
"homepage": "https://github.com/LilCare/soundclout-active-player-module#readme",
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"css-loader": "^3.2.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"eslint": "^6.5.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^1.7.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.9.0",
"jest-environment-enzyme": "^7.1.1",
"jest-enzyme": "^7.1.1",
"style-loader": "^1.0.0",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9"
},
"dependencies": {
"@babel/polyfill": "^7.6.0",
"axios": "^0.19.0",
"bluebird": "^3.7.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"faker": "^4.1.0",
"mysql": "^2.17.1",
"nodemon": "^1.19.3",
"path": "^0.12.7",
"prop-types": "^15.7.2",
"react": "^16.10.2",
"react-dom": "^16.10.2"
}
}