-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.2 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
{
"name": "aaronthomas.co.uk",
"version": "1.0.1",
"description": "",
"main": ".next/main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "next",
"build": "next build",
"start": "next start",
"lint": "eslint ./pages ./components",
"lint:css": "stylelint \"./components/**/*.js\" \"./pages/**/*.js\"",
"precommit": "npm run lint && npm run lint:css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aaronthomas/aaronthomas.co.uk.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/aaronthomas/aaronthomas.co.uk/issues"
},
"homepage": "https://github.com/aaronthomas/aaronthomas.co.uk#readme",
"dependencies": {
"next": "^2.1.1",
"react": "^15.5.4",
"react-dom": "^15.5.4"
},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-prettier": "^1.7.0",
"eslint-plugin-prettier": "^2.0.1",
"eslint-plugin-react": "^6.10.3",
"husky": "^0.13.3",
"prettier": "^1.2.2",
"styled-components": "^1.4.5",
"stylelint": "^7.10.1",
"stylelint-config-standard": "^16.0.0",
"stylelint-processor-styled-components": "^0.1.0"
}
}