-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.78 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
67
68
69
{
"name": "mrctrending",
"resolutions": {
"babel-core": "7.0.0-bridge.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"jsx",
"ts",
"tsx",
"node"
],
"roots": [
"src/"
],
"transform": {
"\\.js?$": "babel-jest"
}
},
"version": "1.0.0",
"description": "#MrcTrending app which allows to see the media being shared as well as publish.",
"scripts": {
"start": "npm run build",
"test": "jest --watchAll",
"build": "webpack -d && cp ./index.html dist/index.html && webpack-dev-server --hot --open",
"build:prod": "webpack -p && cp ./index.html dist/index.html"
},
"author": "Marcus Corrêa",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-proposal-decorators": "^7.3.0",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"axios": "^0.18.0",
"babel-loader": "^8.0.5",
"babel-minify": "^0.5.0",
"babel-plugin-module-resolver": "^3.1.2",
"babel-plugin-rewire": "^1.2.0",
"bootstrap": "^4.1.1",
"css-loader": "^0.28.11",
"file-loader": "^1.1.11",
"fontawesome": "^4.7.2",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.0.0",
"moment": "^2.22.2",
"node-sass": "^4.8.3",
"sass-loader": "^7.0.1",
"socket.io-client": "^2.1.0",
"style-loader": "^0.21.0",
"terser": "3.14.1",
"url-loader": "^1.0.1",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14"
},
"dependencies": {
"mobx": "^3.0.0",
"mobx-react": "^4.1.0",
"mobx-react-devtools": "^4.2.11",
"react": "^15.1.0",
"react-dom": "^15.1.0"
}
}