-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.51 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
{
"name": "with-semantic-ui",
"version": "1.0.0",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"test": "jest",
"post-export": "cp ./_redirects ./out/_redirects",
"export": "next build && next export && npm run post-export",
"lint": "eslint . --ext .js --max-warnings 0",
"lint:fix": "eslint . --ext .js --fix",
"serve": "cd out && python -m SimpleHTTPServer 8080"
},
"dependencies": {
"@mdx-js/mdx": "^0.16.6",
"@zeit/next-css": "^1.0.1",
"@zeit/next-mdx": "^1.2.0",
"axios": "^0.19.2",
"deep-map": "^2.0.0",
"es6-weak-map": "^2.0.3",
"lodash": "^4.17.15",
"ml-regression-multivariate-linear": "^2.0.3",
"next": "^9.4.2",
"path-match": "^1.2.4",
"prop-types": "^15.6.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"recharts": "^2.0.0-beta.1",
"simple-statistics": "^7.0.7",
"sitemap": "^2.1.0",
"snarkjs": "^0.1.31",
"victory": "^34.0.0"
},
"license": "ISC",
"devDependencies": {
"babel-eslint": "^10.0.3",
"eslint": "^5.10.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.17.0",
"jest": "^25.1.0",
"prettier": "^1.19.1"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
],
"@babel/preset-react"
]
}
}