-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
86 lines (86 loc) · 2.65 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
{
"name": "record-manager",
"version": "0.2.3",
"description": "Record Manager UI",
"homepage": ".",
"main": "js/index.js",
"dependencies": {
"@kbss-cvut/s-forms": "^0.6.4",
"axios": "^0.21.1",
"bowser": "^2.9.0",
"classnames": "^2.3.1",
"history": "^4.10.1",
"jsonld-utils": "https://kbss.felk.cvut.cz/dist/jsonld-utils-0.0.11.tgz",
"lodash": "^4.17.15",
"platform": "^1.3.5",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-bootstrap": "1.0.1",
"react-dom": "^17.0.2",
"react-icons": "^4.2.0",
"react-intl": "^5.18.1",
"react-redux": "^7.2.4",
"react-router-dom": "^5.2.0",
"redux": "^4.1.0",
"redux-devtools-extension": "^2.13.9",
"redux-thunk": "^2.3.0",
"s-forms-components": "^0.1.8"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.1",
"@babel/register": "^7.9.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.3",
"autoprefixer": "^9.7.5",
"axios-mock-adapter": "^1.18.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.4.0",
"babel-loader": "^8.1.0",
"babel-plugin-lodash": "^3.3.4",
"clean-webpack-plugin": "^3.0.0",
"compression": "^1.7.4",
"copy-webpack-plugin": "^5.1.1",
"core-js": "^3.6.5",
"cross-env": "^7.0.2",
"css-loader": "^3.4.2",
"cssnano": "^4.1.10",
"dotenv": "^8.2.0",
"dotenv-safe": "^8.2.0",
"enzyme": "^3.11.0",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.19.0",
"express": "^4.17.1",
"html-webpack-plugin": "^3.2.0",
"inline-manifest-webpack-plugin": "^4.0.2",
"jest": "^25.4.0",
"npm-run-all": "^4.1.5",
"postcss-loader": "^3.0.0",
"redux-mock-store": "^1.5.4",
"style-loader": "^1.1.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-config-utils": "^2.3.1",
"webpack-dev-server": "^3.11.0"
},
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --env.dev --config ./webpack.config.js",
"build": "cross-env NODE_ENV=production webpack --env.prod -p --config ./webpack.config.js",
"start": "node server.js",
"build:static": "cross-env NODE_ENV=production STATIC=true webpack --env.prod -p --config ./webpack.config.js",
"test": "jest",
"lint": "eslint js",
"validate": "npm-run-all --parallel lint build test"
},
"author": "Miroslav Blaško",
"contributors": [
"Martin Ledvinka"
],
"repository": {
"type": "git",
"url": "https://kbss.felk.cvut.cz/git/saving-study.git"
},
"private": true
}