-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
102 lines (102 loc) · 3.12 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
{
"name": "czech-lawyers",
"description": "Project of DATOS organization for making visible czech advocates statistics from higher courts.",
"license": "GPL-3.0",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/datoszs/czech-lawyers.git"
},
"scripts": {
"start": "webpack-dev-server --progress --mode development",
"prebuild": "npm run lint && npm run test && rimraf www/frontend/* && rimraf www/assets/webapp/*",
"build": "webpack --progress --mode production",
"lint": "eslint frontend",
"lint:fix": "npm run lint -- --fix",
"test:base": "mocha --require babel-register --require ignore-styles frontend/test.js \"frontend/**/*.spec.js\"",
"test": "npm run test:base -- --reporter spec",
"test:watch": "npm run test:base -- --reporter min --watch"
},
"dependencies": {
"bootstrap": "^3.4.1",
"classnames": "2.2.5",
"history": "4.7.2",
"immutable": "3.8.2",
"invariant": "2.2.4",
"moment": "2.29.4",
"path-to-regexp": "2.2.1",
"prop-types": "15.6.1",
"query-string": "6.1.0",
"react": "16.3.2",
"react-async-script": "0.9.1",
"react-autocomplete": "1.8.1",
"react-bootstrap": "0.31.5",
"react-dom": "^16.3.3",
"react-ga": "2.5.0",
"react-google-recaptcha": "0.11.0",
"react-helmet": "5.2.0",
"react-hot-loader": "4.1.3",
"react-markdown": "2.5.1",
"react-redux": "5.0.7",
"react-router-dom": "4.2.2",
"react-scroll": "1.7.9",
"react-spinkit": "3.0.0",
"redux": "4.0.0",
"redux-form": "7.3.0",
"redux-immutable": "4.0.0",
"redux-saga": "0.16.0",
"sprintf-js": "1.1.1",
"superagent": "3.8.3",
"validator": "13.7.0"
},
"devDependencies": {
"babel-core": "6.26.3",
"babel-eslint": "8.2.3",
"babel-loader": "7.1.4",
"babel-polyfill": "6.26.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-1": "6.24.1",
"babel-register": "6.26.0",
"chai": "4.1.2",
"chai-enzyme": "1.0.0-beta.0",
"chai-immutable": "1.6.0",
"css-loader": "0.28.11",
"dirty-chai": "2.0.1",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "1.1.1",
"eslint": "4.19.1",
"eslint-config-airbnb": "16.1.0",
"eslint-plugin-import": "2.11.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-react": "7.8.2",
"file-loader": "1.1.11",
"gulp": "4.0.0",
"gulp-clean": "0.4.0",
"gulp-concat": "2.6.1",
"gulp-exec": "3.0.1",
"gulp-expect-file": "^1.0.1",
"gulp-less": "4.0.0",
"gulp-uglify": "3.0.0",
"html-webpack-plugin": "3.2.0",
"ignore-styles": "5.0.1",
"json-loader": "0.5.7",
"less": "3.0.4",
"less-loader": "4.1.0",
"merge2": "^1.0.2",
"mini-css-extract-plugin": "0.4.0",
"mocha": "10.0.0",
"raw-loader": "0.5.1",
"react-test-renderer": "16.3.2",
"redux-saga-test-plan": "3.6.0",
"rimraf": "2.6.2",
"sinon": "5.0.7",
"sinon-chai": "3.0.0",
"style-loader": "0.21.0",
"url-loader": "1.0.1",
"webpack": "4.8.3",
"webpack-cli": "2.1.3",
"webpack-dev-server": "^3.11.3",
"yaml-loader": "0.5.0"
}
}