-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.85 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
{
"name": "expensify",
"version": "1.0.0",
"engines": {
"yarn": "1.x"
},
"main": "index.js",
"author": "Andrew Mead",
"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",
"start": "node server/server.js",
"heroku-postbuild": "yarn run build:prod"
},
"dependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-polyfill": "^6.26.0",
"cross-env": "^5.2.0",
"css-loader": "0.28.4",
"d3": "^5.9.2",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"extract-text-webpack-plugin": "^3.0.2",
"firebase": "^5.10.0",
"heroku": "^7.22.9",
"history": "^4.9.0",
"moment": "^2.24.0",
"node-gyp": "^3.8.0",
"node-sass": "^4.11.0",
"normalize.css": "7.0.0",
"numeral": "^2.0.6",
"raf": "^3.4.1",
"react": "^16.8.5",
"react-addons-shallow-compare": "^15.6.2",
"react-dates": "^20.1.0",
"react-dom": "^16.8.5",
"react-modal": "2.2.2",
"react-redux": "^6.0.1",
"react-router-dom": "4.1.2",
"redux": "3.7.2",
"redux-mock-store": "^1.5.3",
"redux-thunk": "^2.3.0",
"sass-loader": "6.0.6",
"style-loader": "0.18.2",
"uuid": "^3.3.2",
"validator": "8.0.0",
"webpack": "3.1.0"
},
"devDependencies": {
"jest": "^24.5.0",
"react-test-renderer": "^16.8.6",
"enzyme": "^3.9.0",
"enzyme-to-json": "^3.3.5",
"enzyme-adapter-react-16": "^1.11.2",
"webpack-dev-server": "2.5.1"
}
}