-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.66 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
{
"name": "expensify",
"version": "1.0.0",
"main": "index.js",
"author": "Hassan",
"license": "MIT",
"scripts": {
"build:dev": "webpack",
"build:prod": "webpack -p --env production",
"dev-server": "webpack-dev-server",
"test": "jest",
"start": "node server/server.js",
"heroku-postbuild": "yarn run build:prod"
},
"dependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-transform-classes": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.6",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"css-loader": "^3.2.0",
"express": "^4.17.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"mini-css-extract-plugin": "^0.8.0",
"moment": "^2.24.0",
"node-sass": "^4.12.0",
"normalize.css": "^8.0.1",
"numeral": "^2.0.6",
"react": "^16.9.0",
"react-addons-shallow-compare": "^15.6.2",
"react-dates": "^20.3.0",
"react-dom": "^16.9.0",
"react-modal": "^3.10.1",
"react-redux": "^7.1.1",
"react-router-dom": "^5.0.1",
"react-with-direction": "^1.3.0",
"redux": "^4.0.4",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.0",
"uuid": "^3.3.3",
"validator": "^11.1.0",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.7"
},
"devDependencies": {
"jest": "^24.9.0",
"webpack-dev-server": "3.7.1"
}
}