-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.29 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
{
"name": "apr-manager",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build:dev-watch": "webpack --watch --mode development",
"build:dev": "webpack --mode development",
"build:prod": "webpack -p --env production",
"dev-server": "webpack-dev-server --mode development",
"build-babel": "babel src/app.js --out-file=public/scripts/app.js --presets=env,react --watch",
"test": "cross-env NODE_ENV=test jest --config=jest.config.json",
"test-watch": "jest --config=jest.config.json --watchAll --env=node --no-cache --maxWorkers=4",
"start": "node server/server.js --mode development",
"start-watch": "nodemon server/server.js",
"heroku-postbuild": "yarn run build:prod"
},
"proxy": "http://localhost:3010/",
"dependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"axios": "^0.18.0",
"babel-polyfill": "^6.26.0",
"css-loader": "^2.1.0",
"express": "^4.16.4",
"express-promise-router": "^3.0.3",
"firebase": "^5.9.0",
"history": "^4.9.0",
"lodash": "^4.17.11",
"moment": "^2.24.0",
"node-sass": "^4.11.0",
"normalize.css": "^8.0.1",
"numeral": "^2.0.6",
"pg": "^7.9.0",
"raf": "^3.4.1",
"react": "^16.8.3",
"react-dates": "^20.0.0",
"react-dom": "^16.8.3",
"react-modal": "^3.8.1",
"react-redux": "^6.0.1",
"react-router-dom": "^4.3.1",
"redux": "^4.0.1",
"redux-mock-store": "^1.5.3",
"redux-thunk": "^2.3.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"uuid": "^3.3.2",
"validator": "^10.11.0",
"webpack": "^4.29.6"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-proposal-object-rest-spread": "^7.3.4",
"babel-loader": "^8.0.5",
"cross-env": "^5.2.0",
"dotenv": "^7.0.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.11.2",
"enzyme-to-json": "^3.3.5",
"eslint": "^5.15.3",
"eslint-plugin-react": "^7.12.4",
"jest": "^24.1.0",
"mini-css-extract-plugin": "^0.5.0",
"moment-locales-webpack-plugin": "^1.0.7",
"react-test-renderer": "^16.8.4",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1"
}
}