-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.04 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
{
"name": "expensify",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node server/index.js",
"build:dev": "webpack",
"build:prod": "webpack -p --env production",
"dev": "webpack-dev-server",
"test": "cross-env NODE_ENV=test jest --config=jest.config.json",
"test:watch": "cross-env NODE_ENV=test jest --config=jest.config.json --watch",
"heroku-postbuild": "npm run build:prod"
},
"engines": {
"node": "10.15.3",
"npm": "6.4.1"
},
"author": "Budavölgyi Bálint",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.5",
"babel-polyfill": "^6.26.0",
"babel-preset-react": "^6.24.1",
"cross-env": "^5.2.0",
"css-loader": "^2.1.1",
"dotenv": "^7.0.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.11.2",
"enzyme-to-json": "^3.3.5",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"firebase": "^5.9.3",
"history": "^4.9.0",
"jest": "^24.6.0",
"moment": "^2.24.0",
"node-sass": "^4.12.0",
"normalize.css": "^8.0.1",
"numeral": "^2.0.6",
"raf": "^3.4.1",
"react": "^16.8.6",
"react-addons-shallow-compare": "^15.6.2",
"react-dates": "^20.1.0",
"react-dom": "^16.8.6",
"react-modal": "^3.8.1",
"react-redux": "^6.0.1",
"react-router-dom": "^5.0.0",
"react-test-renderer": "^16.8.6",
"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",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.2.1"
},
"dependencies": {
"express": "^4.16.4"
}
}