This repository has been archived by the owner on Dec 20, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 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
55
56
{
"name": "next-playgrounds",
"version": "0.0.0",
"description": "An opinionated setup for Next.js",
"author": "Plusb Preco <plusb21@gmail.com>",
"private": true,
"scripts": {
"precommit": "lint-staged",
"prepackage": "npm run build",
"start": "next start src",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"build": "cross-env NODE_ENV=production npm-run-all build:build build:export",
"build:build": "next build src",
"build:export": "next export --outdir app src",
"dev": "cross-env NODE_ENV=development next src",
"package": "node scripts/package.js"
},
"engines": {
"node": ">=9"
},
"license": "MIT",
"homepage": "https://github.com/preco21/next-playgrounds#readme",
"repository": "preco21/next-playgrounds",
"bugs": {
"url": "https://github.com/preco21/next-playgrounds/issues"
},
"dependencies": {
"prop-types": "^15.6.2",
"react": "^16.5.1",
"react-dom": "^16.5.1",
"styled-components": "^3.4.8"
},
"devDependencies": {
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@zeit/next-css": "^0.2.0",
"babel-plugin-inline-dotenv": "^1.1.2",
"babel-plugin-styled-components": "^1.7.1",
"cross-env": "^5.2.0",
"eslint": "^4.19.1",
"eslint-config-prev": "^7.0.0",
"globby": "^8.0.1",
"husky": "^0.14.3",
"lint-staged": "^7.2.2",
"next": "^6.1.2",
"npm-run-all": "^4.1.3",
"url-loader": "^1.1.1"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"git add"
]
}
}