-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.05 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
{
"name": "expensify",
"version": "1.0.0",
"main": "index.js",
"author": "Jarod McBride",
"license": "MIT",
"scripts": {
"build:dev": "webpack",
"build:prod": "webpack -p --env production",
"dev-server": "webpack-dev-server",
"test": "cross-env NODE_ENV=test jest --config=jest.config.json",
"test:watch": "yarn test -- --watch",
"start": "node server/server.js",
"heroku-postbuild": "yarn run build:prod"
},
"dependencies": {
"@babel/core": "^7.1.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-syntax-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"babel-polyfill": "^6.26.0",
"css-loader": "^1.0.0",
"express": "^4.16.3",
"firebase": "^5.5.2",
"history": "^4.7.2",
"moment": "^2.22.2",
"node-sass": "^4.9.3",
"normalize.css": "^8.0.0",
"numeral": "^2.0.6",
"react": "^16.5.2",
"react-addons-shallow-compare": "^15.6.2",
"react-dates": "^18.1.0",
"react-dom": "^16.5.2",
"react-modal": "^3.5.1",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"react-with-direction": "^1.3.0",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.0",
"uuid": "^3.3.2",
"webpack": "^4.20.2"
},
"devDependencies": {
"cross-env": "^5.2.0",
"dotenv": "^6.0.0",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"enzyme-to-json": "^3.3.4",
"eslint": "^5.6.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-babel": "^5.2.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.22.1",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"jest": "^23.6.0",
"mini-css-extract-plugin": "^0.4.3",
"raf": "^3.4.0",
"react-test-renderer": "^16.5.2",
"redux-mock-store": "^1.5.3",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9"
}
}