-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.21 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) · 3.21 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
103
104
105
106
107
108
109
110
{
"name": "stuck-song",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "10.7.0",
"yarn": "1.9.4"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/config/jest/setupTests.js",
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"testEnvironment": "jsdom",
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/config/jest/assetsTransformer.js"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx|mjs)$"
],
"collectCoverageFrom": [
"client/**/*.js",
"server/**/*.js"
]
},
"scripts": {
"start": "node server/index.js",
"dev": "nodemon server/index.js --ignore client/",
"build": "webpack --config webpack.prod.js",
"client": "webpack-dev-server --config webpack.dev.js",
"heroku-postbuild": "yarn --production=false && yarn run build",
"test": "jest --env=jsdom",
"test:watch": "yarn test -- --watch"
},
"keywords": [],
"author": "Ania Brajtkopf",
"license": "ISC",
"dependencies": {
"axios": "^0.16.2",
"babel-polyfill": "^6.26.0",
"connect-mongo": "^1.3.2",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"date-fns": "^1.29.0",
"dotenv": "^4.0.0",
"express": "^4.16.3",
"express-session": "^1.15.6",
"file-loader": "^2.0.0",
"glamor": "^2.20.40",
"glamorous": "^4.13.1",
"html-webpack-plugin": "^3.2.0",
"image-webpack-loader": "3.6.0",
"jsdom": "^11.12.0",
"modern-normalize": "^0.5.0",
"mongoose": "^5.2.7",
"morgan": "^1.9.0",
"moxios": "^0.4.0",
"passport": "^0.4.0",
"passport-spotify": "^0.3.1",
"prop-types": "^15.6.2",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-loadable": "^5.3.1",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"react-share": "^2.2.0",
"redux": "^4.0.0",
"redux-mock-store": "^1.5.3",
"redux-thunk": "^2.3.0",
"url-loader": "^1.1.1"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-jest": "^23.4.2",
"babel-loader": "^7.1.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"connect-history-api-fallback": "^1.5.0",
"css-loader": "^1.0.0",
"enzyme": "^3.4.1",
"enzyme-adapter-react-16": "^1.2.0",
"enzyme-to-json": "^3.3.4",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"jest": "^23.5.0",
"jest-cli": "^23.5.0",
"jest-glamor-react": "^4.3.1",
"mini-css-extract-plugin": "^0.4.1",
"node-sass": "^4.9.2",
"nodemon": "^1.18.3",
"rimraf": "^2.6.2",
"sass-loader": "^7.1.0",
"style-loader": "^0.21.0",
"webpack": "^4.16.4",
"webpack-cli": "^3.1.0",
"webpack-dev-middleware": "^3.1.3",
"webpack-dev-server": "^3.1.5",
"webpack-merge": "^4.1.4"
}
}