-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
45 lines (45 loc) · 1.38 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
{
"name": "react-dfp-surge",
"version": "1.0.0",
"description": "react-dfp website",
"main": "index.js",
"scripts": {
"dev": "node server.js",
"build": "next build",
"export": "next build && next export -o dist && cp -v dist/404/index.html dist/404.html && cp -rv img dist",
"serve": "npm run export && serve ./dist",
"start": "node ./server -p 8000",
"eslint": "eslint components pages utils 2> /dev/null",
"deploy:surge": "npm run export && npx surge --domain `cat CNAME` dist"
},
"author": "Jonatan Anauati (barakawins@gmail.com)",
"license": "ISC",
"dependencies": {
"@zeit/next-css": "^1.0.1",
"@zeit/next-sass": "^1.0.1",
"fstream-ignore": "^1.0.5",
"modern-normalize": "^0.5.0",
"next": "^7.0.2",
"node-sass": "^4.14.1",
"prop-types": "^15.6.2",
"react": "^16.8.0",
"react-dfp": "0.20.1",
"react-dom": "^16.8.6",
"react-github-corner": "^2.3.0",
"react-sidebar": "^3.0.2",
"react-syntax-highlighter": "^10.1.1"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"babel-preset-airbnb": "^3.2.0",
"eslint": "^5.12.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.12.3",
"raw-loader": "^0.5.1",
"serve": "^10.1.2",
"surge": "^0.21.6"
}
}