-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.43 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": "nextjs-seed",
"version": "1.0.1",
"description": "Seed project for NextJS applications.",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"dev": "next",
"start": "next start",
"build": "next build",
"lint": "eslint . --fix",
"precommit": "npm run lint",
"prepush": "npm run lint && npm run test"
},
"repository": {
"type": "git",
"url": "git@github.com:mcmakler/nextjs-seed.git"
},
"keywords": [],
"author": "Baruch Velez <baruch.velez@mcmakler.de>",
"contributors": [
"Sai Satchitanand <sai.satchitanand@mcmakler.de>"
],
"license": "MIT",
"dependencies": {
"glob": "^7.1.2",
"isomorphic-fetch": "^2.2.1",
"mcmakler-design-guide": "^3.1.6",
"next": "^4.0.0",
"prop-types": "^15.5.10",
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"devDependencies": {
"autoprefixer": "^7.1.4",
"eslint": "^4.6.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^21.0.2",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.3.0",
"husky": "^0.14.3",
"jest": "^21.0.2",
"node-sass": "^4.5.3",
"normalize.css": "^7.0.0",
"postcss-easy-import": "^3.0.0",
"postcss-loader": "^2.0.6",
"raw-loader": "^0.5.1",
"sass-loader": "^6.0.6"
}
}