-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.45 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
{
"name": "retrobot",
"version": "1.0.0",
"repository": "ssh://git@github.com/severest/retrobot.git",
"author": "Sean Everest <sean.b.everest@gmail.com>",
"license": "MIT",
"scripts": {
"test": "jest -o --watch",
"test:ci": "jest",
"lint": "eslint --ext .jsx --ext .js app/javascript/"
},
"dependencies": {
"@babel/core": "^7.12.7",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-decorators": "^7.12.1",
"@babel/plugin-proposal-export-namespace-from": "^7.12.1",
"@babel/plugin-proposal-function-sent": "^7.12.1",
"@babel/plugin-proposal-json-strings": "^7.12.1",
"@babel/plugin-proposal-numeric-separator": "^7.12.7",
"@babel/plugin-proposal-throw-expressions": "^7.12.1",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"@loadable/component": "^5.14.1",
"@rails/actioncable": "^6.0.3-2",
"@rails/webpacker": "5.2.1",
"aphrodite": "2.4.0",
"babel-loader": "^8.2.1",
"bootstrap-sass": "^3.4.1",
"chart.js": "2.9.4",
"classnames": "^2.2.6",
"copy-to-clipboard": "3.3.1",
"css-loader": "^4.3.0",
"debug": "^4.3.1",
"emoji-regex": "9.2.0",
"file-loader": "^6.2.0",
"font-awesome": "^4.7.0",
"fresh": "^0.5.2",
"linkifyjs": "^2.1.8",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"node-sass": "^4.14.1",
"particlesjs": "2.2.3",
"prop-types": "^15.7.2",
"rc-tooltip": "^4.2.3",
"react": "^16.10.2",
"react-chartjs-2": "2.11.1",
"react-dom": "^16.10.2",
"react-notification": "^6.8.4",
"react-router-dom": "^5.2.0",
"react-transition-group": "^4.4.1",
"rxjs": "^6.6.3",
"sass-loader": "^10.1.0",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
},
"devDependencies": {
"@percy/agent": "0.28.5",
"babel-eslint": "^10.0.0",
"babel-jest": "^26.6.3",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.5",
"eslint": "^7.14.0",
"eslint-plugin-jest": "24.1.3",
"eslint-plugin-react": "^7.21.5",
"jest": "^26.6.3",
"style-loader": "^1.2.1",
"timekeeper": "^2.2.0",
"webpack-dev-server": "^3.11.0"
},
"jest": {
"setupFiles": [
"./setupJest.js"
],
"roots": [
"./app/javascript"
],
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
}
}