forked from 4-ever-young/soundclout-active-display-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.85 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
{
"name": "soundclout-active-display-module",
"version": "1.0.0",
"description": "Active Display Module for SoundClout",
"main": "server.js",
"scripts": {
"test": "jest",
"start-server": "nodemon server/server.js",
"seed-database": "node database/seeder.js",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/quetzalcaotl/soundclout-active-display-module.git"
},
"author": "David J Mosher",
"license": "ISC",
"bugs": {
"url": "https://github.com/quetzalcaotl/soundclout-active-display-module/issues"
},
"homepage": "https://github.com/quetzalcaotl/soundclout-active-display-module#readme",
"devDependencies": {
"@babel/core": "^7.6.3",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"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",
"jest": "^24.9.0",
"jest-environment-enzyme": "^7.1.1",
"jest-enzyme": "^7.1.1",
"nodemon": "^1.19.3",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-test-renderer": "^16.10.2",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9"
},
"dependencies": {
"body-parser": "^1.19.0",
"brotli-webpack-plugin": "^1.1.0",
"compression-webpack-plugin": "^3.0.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-static-gzip": "^2.0.5",
"faker": "^4.1.0",
"jquery": "^3.4.1",
"mongoose": "^5.7.4"
},
"jest": {
"setupFilesAfterEnv": [
"jest-enzyme"
],
"testEnvironment": "enzyme",
"testEnvironmentOptions": {
"enzymeAdapter": "react16"
}
}
}