This repository has been archived by the owner on Mar 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.34 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
76
77
{
"name": "som-web",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "babel-node index.js",
"dev": "nodemon index.js --exec babel-node",
"build": "webpack --progress",
"build:production": "NODE_ENV=production webpack",
"lint": "eslint src",
"prettier": "prettier --config ./.prettierrc --write \"./**/*.jsx\"",
"lint:fix": "eslint src --fix",
"docker:build": "docker build --build-arg NODE_ENV=production -t som-web-prod:latest ."
},
"dependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.3",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.4.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "7.0.0-beta.55",
"apollo-cache-inmemory": "^1.6.2",
"apollo-client": "^2.6.2",
"apollo-link-http": "^1.5.14",
"axios": "^0.18.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.7.1",
"babel-loader": "^8.0.5",
"babel-polyfill": "^6.26.0",
"bcrypt": "^5.0.0",
"components": "^0.1.0",
"compression-webpack-plugin": "^2.0.0",
"dotenv": "^8.0.0",
"dotenv-webpack": "^1.7.0",
"ejs": "^2.6.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"express": "^4.16.4",
"fetch": "^1.1.0",
"graphql": "^14.3.1",
"graphql-tag": "^2.10.1",
"history": "^4.9.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.24.0",
"node-fetch": "^2.6.0",
"nodemon": "^1.18.4",
"passport-local": "^1.0.0",
"prop-types": "^15.7.2",
"query-string": "^6.9.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-jss": "^8.6.1",
"react-redux": "^7.0.2",
"react-router-dom": "^5.0.0",
"react-test-renderer": "^16.8.6",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"should": "^13.2.3",
"styled": "^1.0.0",
"styled-components": "^4.2.0",
"supertest": "^4.0.2",
"terser-webpack-plugin": "^1.2.3",
"vanilla-masker": "^1.2.0",
"webpack": "^4.29.5",
"webpack-bundle-analyzer": "^3.1.0",
"webpack-cli": "^3.2.3"
},
"devDependencies": {}
}