-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.08 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
{
"name": "expensify",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"babel-cli": "6.24.1",
"babel-core": "6.25.0",
"babel-loader": "7.1.1",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-object-rest-spread": "6.23.0",
"babel-preset-env": "1.5.2",
"babel-preset-react": "6.24.1",
"css-loader": "^2.1.0",
"enzyme-to-json": "3.0.1",
"eslint-config-airbnb": "^17.1.0",
"express": "4.15.4",
"extract-text-webpack-plugin": "3.0.0",
"firebase": "4.2.0",
"history": "4.7.2",
"moment": "2.18.1",
"node-sass": "^4.11.0",
"node-sass-glob-importer": "^5.3.0",
"normalize.css": "^8.0.1",
"numeral": "^2.0.6",
"react": "^16.8.3",
"react-addons-shallow-compare": "15.6.0",
"react-dates": "12.7.0",
"react-dom": "^16.8.3",
"react-modal": "2.2.2",
"react-redux": "5.0.5",
"react-router-dom": "4.2.2",
"react-test-renderer": "16.0.0",
"redux": "3.7.2",
"redux-thunk": "2.2.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"uuid": "^3.3.2",
"validator": "^10.11.0"
},
"devDependencies": {
"chalk": "^2.4.2",
"cross-env": "5.0.5",
"dotenv": "4.0.0",
"enzyme": "3.0.0",
"enzyme-adapter-react-16": "1.0.0",
"eslint": "^5.15.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.0.0",
"eslint-import-resolver-webpack": "^0.11.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"jest": "20.0.4",
"prettier": "^1.16.4",
"raf": "3.3.2",
"webpack": "3.1.0",
"webpack-dev-server": "2.5.1"
},
"scripts": {
"lint": "eslint .",
"build:dev": "webpack --watch",
"build:prod": "webpack -p --env production",
"dev-server": "webpack-dev-server --env dev",
"test": "cross-env NODE_ENV=test jest --config=jest.config.json",
"test-watch": "jest --watch",
"start": "node server/server.js",
"heroku-postbuild": "yarn run build:prod"
}
}