-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.52 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
{
"dependencies": {
"@mdx-js/mdx": "^0.16.6",
"@zeit/next-css": "^1.0.1",
"@zeit/next-mdx": "^1.2.0",
"axios": "^0.18.0",
"bulma": "^0.7.2",
"file-saver": "^2.0.0",
"formik": "^1.4.1",
"nes.css": "^1.0.0",
"next": "^7.0.2",
"nprogress": "^0.2.0",
"qrcode.react": "^0.8.0",
"react": "^16.6.3",
"react-awesome-styled-grid": "^2.2.2",
"react-dom": "^16.6.3",
"react-spring": "^7.1.3",
"remark-emoji": "^2.0.2",
"remark-images": "^0.16.1",
"styled-components": "^4.1.2",
"yup": "^0.26.6"
},
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"now-build": "next build && next export -o dist",
"format": "prettier **/*.js --write --single-quote --no-semi",
"lint": "eslint",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@storybook/addon-actions": "^4.1.3",
"@storybook/addon-links": "^4.1.3",
"@storybook/addons": "^4.1.3",
"@storybook/react": "^4.1.3",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"babel-plugin-styled-components": "^1.9.3",
"eslint": "^5.10.0",
"eslint-plugin-react": "^7.11.1",
"husky": "^1.3.0",
"lint-staged": "^8.1.0",
"prettier": "^1.15.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js}": [
"eslint --fix",
"prettier --write --single-quote --no-semi",
"git add"
]
}
}