forked from Medium/snowflake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.01 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
{
"name": "eng-growth",
"version": "0.0.1",
"main": "index.js",
"repository": "https://github.com/Medium/eng-growth",
"license": "MIT",
"dependencies": {
"axios": "^0.21.4",
"d3": "^4.11.0",
"next": "^9.0.7",
"prop-types": "^15.7.2",
"react": "^16.10.2",
"react-dom": "^17.0.2",
"styled-components": "^5.3.1"
},
"scripts": {
"dev": "next",
"export": "next build && next export",
"flow": "flow",
"lint": "yarn run lint-javascript && yarn run lint-json",
"lint-javascript": "eslint . --fix",
"lint-json": "jsonlint static/**/*.json --pretty-print --in-place"
},
"devDependencies": {
"@babel/preset-flow": "^7.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.25.2",
"flow-bin": "^0.57.2",
"jsonlint": "^1.6.3"
}
}