-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.43 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.43 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "frontend",
"version": "0.0.1",
"description": "Frontend for nobt.io",
"private": true,
"engines": {
"node": ">=8.5.0",
"npm": "^5.0.0"
},
"scripts": {
"postinstall": "git config core.hooksPath .githooks",
"api": "cd ../api; PORT=8080 MIGRATE_DATABASE_AT_STARTUP=false USE_IN_MEMORY_DATABASE=true ./gradlew run",
"clean": "rimraf dist",
"dev": "webpack-dev-server --mode development --hot",
"build": "webpack --mode production",
"lint": "eslint src && tslint -c tslint.json 'src/**/*.ts' 'src/**/*.tsx'",
"prettier": "prettier --check '**/*.{js,scss,ts,tsx,html,json,yml}'",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git@github.com:nobt-io/frontend.git"
},
"dependencies": {
"@babel/polyfill": "^7.4",
"@material-ui/core": "^3.9.3",
"@sentry/browser": "^5.9.0",
"axios": "^0.18.1",
"classnames": "^2.2.6",
"copy-to-clipboard": "^3.0.8",
"currency-flags": "^1.9.0",
"currency-symbol-map": "^4.0.4",
"debug": "^4.1.1",
"history": "~4.10.1",
"normalize.css": "^8.0.1",
"oaf-react-router": "^2.1.1",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-bootstrap": "^0.32.4",
"react-css-themr": "^2.1.2",
"react-dom": "^16.8.4",
"react-intl": "^2.8.0",
"react-overlays": "^0.8.3",
"react-redux": "^7.1.0",
"react-rotating-text": "^1.2.0",
"react-router-dom": "^5.1.2",
"react-scrollspy": "^3.1.1",
"react-select": "^1.2.1",
"react-toolbox": "^1.3.4",
"react-toolbox-legacy": "^1.5.6",
"redux": "^3.0.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"reselect-change-memoize": "^1.1.0",
"swr": "^0.3.0"
},
"devDependencies": {
"@babel/core": "^7.4",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/preset-env": "^7.4",
"@babel/preset-react": "^7.0",
"@sentry/cli": "^1.49.0",
"@types/debug": "^0.0.31",
"@types/jest": "^24.0.23",
"@types/react": "^16.9.5",
"@types/react-dom": "^16.8.3",
"@types/react-router": "^5.1.1",
"@types/react-router-dom": "^5.1.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^8.0",
"copy-webpack-plugin": "^5.0.2",
"css-loader": "^2.1.1",
"cypress": "^4.11.0",
"cypress-plugin-snapshots": "^1.4.3",
"eslint": "^5.14.1",
"eslint-config-prettier": "^4.1.0",
"eslint-config-standard": "^11.0.0",
"eslint-config-standard-react": "^7.0.0",
"eslint-import-resolver-webpack": "^0.11.1",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-standard": "^3.0.1",
"favicons-webpack-plugin": "^0.0.9",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.1.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.3.1",
"local-web-server": "^2.6.1",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.11.0",
"prettier": "^1.16.4",
"react-test-renderer": "^16.8.4",
"redux-mock-store": "^1.2.1",
"rimraf": "^2.6.3",
"sass-loader": "^6.0.7",
"style-loader": "^0.23.1",
"ts-jest": "^24.0.0",
"ts-loader": "^6",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^3.6.0",
"typescript": "^3.3.3333",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1"
}
}