-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
69 lines (69 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
{
"name": "Etymap",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "grunt --",
"lint": "eslint --fix \"./{src,test}/**/*.js\"",
"flow": "flow; test $? -eq 0 -o $? -eq 2"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-flow-strip-types": "^7.0.0",
"@babel/plugin-transform-react-jsx": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.3",
"babel-plugin-import": "^1.13.0",
"babel-plugin-react-transform": "^3.0.0",
"babelify": "^10.0.0",
"bundle-collapser": "^1.3.0",
"eslint": "^8.7.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.18.0",
"flow-bin": "0.170.0",
"grunt": "^1.5.3",
"grunt-babel": "^8.0.0",
"grunt-browserify": "^6.0.0",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-htmlmin": "^3.1.0",
"grunt-contrib-less": "^3.0.0",
"grunt-contrib-uglify": "^5.0.1",
"grunt-contrib-watch": "^1.1.0",
"grunt-shell-spawn": "^0.4.0",
"load-grunt-tasks": "^5.1.0",
"prettier": "^2.5.1"
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"d3": "^5.15.0",
"jquery": "^3.5.0",
"lodash": "^4.17.21",
"navigo": "^7.1.2",
"semantic-ui-dist": "^2.2.10",
"whatwg-fetch": "^3.0.0"
}
}