Sort package.json (#438)

* Sort package.json

* Keywords
This commit is contained in:
Lipis 2020-01-18 03:02:14 +02:00 committed by Christopher Chedeau
parent b9a8d292c0
commit 8e526384b9

View File

@ -1,10 +1,10 @@
{ {
"name": "excalidraw", "browserslist": [
"homepage": "https://excalidraw.com", ">0.2%",
"version": "1.0.0", "not dead",
"description": "", "not ie <= 11",
"keywords": [], "not op_mini all"
"main": "src/index.js", ],
"dependencies": { "dependencies": {
"nanoid": "2.1.9", "nanoid": "2.1.9",
"react": "16.12.0", "react": "16.12.0",
@ -12,6 +12,7 @@
"react-scripts": "3.3.0", "react-scripts": "3.3.0",
"roughjs": "4.0.4" "roughjs": "4.0.4"
}, },
"description": "",
"devDependencies": { "devDependencies": {
"@types/jest": "24.9.0", "@types/jest": "24.9.0",
"@types/nanoid": "2.1.0", "@types/nanoid": "2.1.0",
@ -24,25 +25,10 @@
"prettier": "1.19.1", "prettier": "1.19.1",
"typescript": "3.7.5" "typescript": "3.7.5"
}, },
"scripts": {
"build": "react-scripts build",
"eject": "react-scripts eject",
"fix": "npm run prettier -- --write",
"prettier": "prettier \"**/*.{js,css,scss,json,md,ts,tsx,html,yml}\"",
"start": "react-scripts start",
"test:app": "react-scripts test --env=jsdom --passWithNoTests",
"test:code": "npm run prettier -- --list-different",
"test": "npm run test:app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"eslintConfig": { "eslintConfig": {
"extends": "react-app" "extends": "react-app"
}, },
"homepage": "https://excalidraw.com",
"husky": { "husky": {
"hooks": { "hooks": {
"pre-commit": "lint-staged" "pre-commit": "lint-staged"
@ -56,5 +42,18 @@
"*.{js,ts,tsx}": [ "*.{js,ts,tsx}": [
"eslint --max-warnings 0" "eslint --max-warnings 0"
] ]
} },
"main": "src/index.js",
"name": "excalidraw",
"scripts": {
"build": "react-scripts build",
"eject": "react-scripts eject",
"fix": "npm run prettier -- --write",
"prettier": "prettier \"**/*.{js,css,scss,json,md,ts,tsx,html,yml}\"",
"start": "react-scripts start",
"test": "npm run test:app",
"test:app": "react-scripts test --env=jsdom --passWithNoTests",
"test:code": "npm run prettier -- --list-different"
},
"version": "1.0.0"
} }