-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.82 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.82 KB
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
{
"name": "expansify-app",
"version": "1.0.0",
"main": "index.js",
"engines": {
"node": "15.x"
},
"license": "MIT",
"scripts": {
"build:prod": "webpack --config webpack.prod.js",
"build:dev": "webpack --config webpack.dev.js",
"dev-server": "webpack serve --open --config webpack.dev.js",
"test": "cross-env NODE_ENV=test jest --config=jest.config.json",
"start": "node server/server.js",
"heroku-postbuild": "npm run build:prod"
},
"dependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"babel-cli": "^6.18.0",
"babel-loader": "^8.2.2",
"babel-polyfill": "^6.26.0",
"css-loader": "^5.0.1",
"express": "^4.17.1",
"firebase": "^8.2.6",
"history": "^4.10.1",
"luxon": "^1.26.0",
"moment": "^2.29.1",
"node-sass": "^5.0.0",
"normalize.css": "^8.0.1",
"numeral": "^2.0.6",
"raf": "^3.4.1",
"react": "^16.14.0",
"react-dates": "^12.7.0",
"react-dom": "^16.14.0",
"react-modal": "^3.12.1",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"sass-loader": "^10.1.1",
"style-loader": "^2.0.0",
"uuid": "^3.4.0",
"validator": "^13.5.2",
"webpack": "^5.13.0"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"cross-env": "^7.0.3",
"dotenv": "^8.2.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"enzyme-to-json": "^3.6.1",
"jest": "^26.6.3",
"mini-css-extract-plugin": "^1.3.5",
"react-test-renderer": "^16.14.0",
"redux-mock-store": "^1.5.4",
"webpack-cli": "^4.3.1",
"webpack-dev-server": "^3.11.1",
"webpack-merge": "^4.2.2"
},
"author": "",
"description": ""
}