forked from UniversityOfHelsinkiCS/oodikone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.79 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
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
112
113
114
115
{
"name": "oodikone2-frontend",
"version": "0.1.0",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/UniversityOfHelsinkiCS/oodikone2-frontend.git"
},
"scripts": {
"dev": "webpack-dev-server --config webpack.config.local.js",
"docker": "webpack-dev-server --host 0.0.0.0 --inline --config webpack.config.local.js",
"dist": "rimraf dist && webpack --config webpack.config.production.js",
"lint": "concurrently 'npm run lint:js' 'npm run lint:css'",
"lint:css": "stylelint 'src/**/*.css'",
"lint:js": "eslint server ./ --ext .jsx,.js",
"lintfix": "eslint server ./ --ext .jsx,.js --fix",
"stats": "webpack --json --config webpack.config.production.js > stats.json",
"pretest": "npm run lint",
"test": "",
"notest": "echo",
"cypress:open": "cypress open",
"cypress:run": "cypress run -P ./",
"cypress:record": "cypress run --record -P ./",
"storybook": "start-storybook -h 0.0.0.0 -p 7777 --ci"
},
"licence": "",
"main": "src/app.jsx",
"devDependencies": {
"@storybook/react": "^5.0.1",
"babel-core": "6.26.0",
"babel-eslint": "^10.0.1",
"babel-loader": "7.1.4",
"babel-plugin-inline-json-import": "^0.3.1",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-latest": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-runtime": "6.26.0",
"case-sensitive-paths-webpack-plugin": "^2.2.0",
"concurrently": "^4.1.0",
"css-loader": "^1.0.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-flowtype": "^3.2.1",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prefer-object-spread": "^1.2.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.0.1",
"extract-text-webpack-plugin": "^v4.0.0-beta.0",
"file-loader": "^2.0.0",
"glob": "^7.1.3",
"html-webpack-plugin": "3.2.0",
"html-webpack-template": "^6.2.0",
"husky": "^1.3.1",
"mini-css-extract-plugin": "^0.4.5",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-cssnext": "^3.1.0",
"postcss-flexbugs-fixes": "^4.1.0",
"postcss-loader": "^3.0.0",
"style-loader": "^0.23.1",
"stylelint": "^9.10.1",
"stylelint-config-standard": "^18.2.0",
"sw-precache-webpack-plugin": "0.11.5",
"uglifyjs-webpack-plugin": "^2.1.1",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3",
"webpack-deadcode-plugin": "^0.1.11",
"webpack-dev-server": "^3.1.14",
"webpack-manifest-plugin": "^2.0.4"
},
"dependencies": {
"@sentry/browser": "^4.5.3",
"axios": "^0.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-polyfill": "^6.26.0",
"dotenv": "^6.2.0",
"highcharts": "^6.2.0",
"highcharts-react-official": "^1.5.2",
"jStat": "^1.7.1",
"jwt-decode": "^2.2.0",
"lodash": "^4.17.11",
"moment": "^2.24.0",
"path-to-regexp": "^2.4.0",
"prop-types": "^15.7.1",
"react": "^16.8.1",
"react-datetime": "^2.16.3",
"react-dom": "^16.8.1",
"react-highcharts": "^16.0.2",
"react-hot-loader": "^4.6.5",
"react-jsx-highcharts": "^3.4.0",
"react-localize-redux": "^2.17.5",
"react-markdown": "^4.0.6",
"react-redux": "^5.1.1",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-scroll-to-component": "^1.0.2",
"recharts": "^1.4.2",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"reselect": "^3.0.1",
"rimraf": "^2.6.3",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.83.0",
"uuid": "^3.3.2"
},
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
}
}