-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.6 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
{
"name": "react-slide-decks",
"version": "0.0.1",
"main": "index.js",
"author": "Konrad Szwarc",
"license": "MIT",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start -p $PORT",
"export": "yarn run build && next export -o ./docs",
"heroku-postbuild": "next build"
},
"engines": {
"node": ">=10",
"npm": ">=6"
},
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-proposal-decorators": "^7.3.0",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@zeit/next-css": "^1.0.1",
"@zeit/next-sass": "^1.0.1",
"babel-eslint": "^10.0.1",
"babel-plugin-styled-components": "^1.10.0",
"classnames": "^2.2.6",
"file-loader": "^3.0.1",
"next": "^9.3.2",
"node-sass": "^4.11.0",
"prism-react-renderer": "^0.1.6",
"prop-types": "^15.7.2",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-inlinesvg": "^0.8.4",
"react-live": "^2.0.0",
"react-syntax-highlighter": "^10.2.1",
"styled-components": "^4.1.3"
},
"devDependencies": {
"eslint": "^5.15.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"prettier": "^1.16.4",
"stylelint": "^9.10.1",
"stylelint-config-standard": "^18.2.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.5.2"
}
}