-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.08 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
70
71
72
73
{
"name": "expensify-app",
"version": "1.0.0",
"main": "index.js",
"author": "Anthony DiFrancesco",
"license": "MIT",
"scripts": {
"build:dev": "webpack",
"build:prod": "webpack -p --env production",
"dev-server": "webpack-dev-server",
"heroku-postbuild": "yarn run build:prod",
"start": "node server/server.js",
"test": "cross-env NODE_ENV=test jest --config=jest.config.json"
},
"dependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.1",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-0",
"babel-loader": "^8.0.0",
"css-loader": "0.28.4",
"express": "4.15.4",
"firebase": "4.8.0",
"history": "^4.7.2",
"mini-css-extract-plugin": "^0.4.2",
"moment": "2.19.3",
"node-sass": "4.5.3",
"normalize.css": "7.0.0",
"numeral": "2.0.6",
"prop-types": "^15.6.2",
"raf": "3.3.2",
"react": "16.0.0",
"react-addons-shallow-compare": "15.6.0",
"react-dates": "12.7.0",
"react-dom": "16.0.0",
"react-modal": "3.5.1",
"react-redux": "5.0.5",
"react-router-dom": "4.2.2",
"redux": "3.7.2",
"redux-mock-store": "1.2.3",
"redux-thunk": "2.2.0",
"regenerator-runtime": "^0.12.1",
"sass-loader": "6.0.6",
"style-loader": "0.18.2",
"uuid": "3.1.0",
"validator": "8.0.0",
"webpack": "^4.17.2",
"webpack-cli": "^3.1.0"
},
"devDependencies": {
"babel-eslint": "^9.0.0",
"babel-jest": "^23.6.0",
"cross-env": "^5.2.0",
"dotenv": "^6.0.0",
"enzyme": "3.0.0",
"enzyme-adapter-react-16": "1.0.0",
"enzyme-to-json": "3.0.1",
"eslint": "^5.6.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.11.1",
"jest": "23.2.0",
"prettier": "^1.14.3",
"react-test-renderer": "16.0.0",
"webpack-dev-server": "^3.1.7"
}
}