-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.11 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
74
75
{
"dependencies": {
"@babel/cli": "7.23.0",
"@babel/core": "7.23.3",
"@babel/plugin-transform-class-properties": "7.23.3",
"@babel/plugin-transform-object-rest-spread": "^7.23.4",
"@babel/preset-env": "7.10.2",
"@babel/preset-react": "7.10.1",
"babel-loader": "8.3.0",
"babel-polyfill": "6.26.0",
"css-loader": "3.6.0",
"express": "4.18.2",
"firebase": "10.7.1",
"gh-pages": "6.0.0",
"history": "4.7.2",
"mini-css-extract-plugin": "2.7.6",
"moment": "2.18.1",
"normalize.css": "7.0.0",
"numeral": "2.0.6",
"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": "2.2.2",
"react-redux": "5.0.5",
"react-router-dom": "5.3.4",
"react-scripts": "5.0.1",
"redux": "3.7.2",
"redux-mock-store": "1.5.4",
"redux-thunk": "3.1.0",
"sass": "1.69.5",
"sass-loader": "7.3.1",
"style-loader": "1.0.0",
"uuid": "3.1.0",
"validator": "8.0.0",
"webpack": "5.89.0",
"webpack-cli": "5.1.4"
},
"devDependencies": {
"cross-env": "5.0.5",
"dotenv": "4.0.0",
"enzyme": "3.0.0",
"enzyme-adapter-react-16": "1.0.0",
"enzyme-to-json": "3.0.1",
"jest": "29.7.0",
"react-test-renderer": "16.0.0",
"webpack-dev-server": "4.15.1"
},
"name": "expensify-app",
"version": "1.0.0",
"main": "index.js",
"author": "Felipe Bazzanella",
"license": "MIT",
"homepage": "https://felipebazza.github.io/expensify-app/",
"scripts": {
"build-babel": "babel src/app.js --out-file=public/app.js --presets=env,react --watch",
"build:dev": "webpack",
"build:prod": "webpack --env production",
"react-build": "react-scripts build",
"dev-server": "webpack-dev-server",
"predeploy": "yarn run react-build",
"deploy": "gh-pages -d build",
"test": "cross-env NODE_ENV=test jest --config=jest.config.json",
"start": "node server/server.js",
"heroku-postbuild": "yarn run build:prod"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
]
}
}