-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
65 lines (65 loc) · 1.66 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
{
"name": "posso-ir-api",
"private": true,
"scripts": {
"test": "run-p rails:test rails:lint react:test",
"rails:test": "bundle exec rspec",
"rails:lint": "bundle exec rubocop",
"react:test": "jest --colors --maxWorkers=2 --coverage"
},
"dependencies": {
"@babel/preset-react": "^7.9.4",
"@rails/activestorage": "^6.0.0",
"@rails/ujs": "^6.0.0",
"@rails/webpacker": "4.2.2",
"@ttskch/select2-bootstrap4-theme": "^1.3.2",
"axios": "^0.19.2",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"bootstrap": "4.3.1",
"chart.js": "^2.9.3",
"chartkick": "^3.2.0",
"classnames": "^2.2.6",
"d3-ease": "^1.0.6",
"deck.gl": "7.3.6",
"dotenv": "^8.2.0",
"expose-loader": "^0.7.5",
"immer": "^6.0.2",
"jquery": "3.5.1",
"layer-manager": "^3.0.4",
"lodash": "^4.17.19",
"luma.gl": "7.3.2",
"popper.js": "^1.16.1",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-map-gl": "^5.2.3",
"react_ujs": "^2.6.1",
"select2": "^4.0.13",
"stimulus": "^1.1.1",
"turbolinks": "^5.2.0",
"use-onclickoutside": "^0.3.1",
"uuid": "^7.0.2",
"viewport-mercator-project": "6.1.1",
"webpack": "^4.42.0"
},
"version": "0.1.0",
"devDependencies": {
"babel-jest": "^25.4.0",
"jest": "^25.4.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.2",
"webpack-dev-server": "^3.10.3"
},
"jest": {
"roots": [
"<rootDir>/app/javascript/components"
],
"moduleDirectories": [
"<rootDir>/node_modules"
],
"moduleFileExtensions": [
"js"
],
"coverageReporters": ["text"]
}
}