-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.35 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "next-eslint-sass",
"version": "0.1.0",
"description": "Next.js boilerplate with sane base configuration.",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "NODE_ENV=development WILD_ENV=development node server.js",
"build": "next build",
"export": "next build && next export -o dist",
"start": "NODE_ENV=production node server.js",
"clean-babel-cache": "rm -Rf ./node_modules/.cache/babel-loader/*",
"lint": "npm run lint:js",
"lint:withfix": "npm run lint:js -- --fix",
"lint:js": "npm run lint:eslint -- . ",
"lint:eslint": "eslint --ignore-path .eslintignore",
"postinstall": "# cp vendor/gsap/bonus-files-for-npm-users/* node_modules/gsap/",
"precommit": "lint-staged"
},
"lint-staged": {
"**/*.js": "eslint --ignore-path .gitignore --ignore-pattern vendor/*"
},
"author": "Yordan Lasonov",
"license": "ISC",
"dependencies": {
"@kennethormandy/react-flipcard": "^0.4.3",
"@zeit/next-css": "^1.0.1",
"@zeit/next-sass": "^0.2.0",
"classnames": "^2.2.6",
"contentful": "^7.0.3",
"express": "^4.16.3",
"gsap": "^1.20.4",
"isomorphic-unfetch": "^2.1.1",
"mobx": "^5.0.5",
"mobx-react": "^5.2.5",
"next": "^6.1.2",
"next-fonts": "^0.10.0",
"next-images": "^0.10.6",
"next-routes": "^1.4.2",
"react": "^16.6.1",
"react-data-fetching": "^0.2.2",
"react-dom": "^16.6.1",
"react-markdown": "^3.6.0",
"styled-components": "^4.0.3"
},
"devDependencies": {
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^5.2.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-standard": "^11.0.0",
"eslint-config-wild": "^0.2.4",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-react": "^7.10.0",
"eslint-plugin-standard": "^3.1.0",
"husky": "^0.14.3",
"lint-staged": "^7.0.4",
"node-sass": "^4.8.3",
"webpack-glsl-loader": "^1.0.1"
},
"eslintConfig": {
"extends": "wild",
"rules": {
"react/no-array-index-key": 0,
"react/sort-comp": 0,
"no-mixed-operators": 0,
"function-paren-newline": 0
}
}
}