This repository has been archived by the owner on Mar 29, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.46 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "react-starter",
"version": "1.0.0",
"description": "Highly opinionated starter web application for react client side projects",
"main": "index.js",
"engines": {
"node": "^8 || ^10"
},
"bin": {
"upgrade-tags": "./bin/upgrade-tags.js"
},
"scripts": {
"start": "parcel index.html -p 4444",
"build": "parcel build index.html",
"clean": "rm -rf node_modules/ ~/.xo-cache build/",
"test": "is-ci \"test:coverage\" \"test:watch\"",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest --runInBand --watch",
"report": "npx opn coverage/lcov-report/index.html",
"lint": "xo src/",
"format": "prettier \"**/*.+(js|jsx|css|less|scss|md|graphql|mdx)\" --write",
"validate": "npm run test && npm run flow",
"flow": "flow src/",
"upgrade-tags": "upgrade-tags"
},
"xo": {
"prettier": true,
"extends": "xo-react",
"globals": [
"expect",
"test",
"document"
],
"rules": {
"unicorn/filename-case": [
"off"
]
}
},
"keywords": [
"playground",
"starter",
"parcel",
"react",
"tooling"
],
"author": "Arti Villa",
"license": "ISC",
"dependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-loadable": "^5.5.0",
"react-test-renderer": "^16.8.6",
"styled-components": "^4.2.0"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.4.3",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-preset-env": "^1.7.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"codecov": "^3.3.0",
"eol": "^0.9.1",
"eslint-config-xo": "^0.25.1",
"eslint-config-xo-react": "^0.17.0",
"eslint-plugin-react": "^7.12.4",
"execa": "^1.0.0",
"find-versions": "^3.0.0",
"flow-bin": "^0.89.0",
"husky": "^1.2.1",
"identity-obj-proxy": "^3.0.0",
"is-ci-cli": "^1.1.1",
"jest": "^23.6.0",
"jest-dom": "^3.1.3",
"jest-watch-select-projects": "^0.1.1",
"jest-watch-typeahead": "^0.2.1",
"lint-staged": "^8.1.5",
"opn-cli": "^4.1.0",
"parcel-bundler": "^1.12.3",
"prettier": "^1.16.4",
"react-testing-library": "^5.9.0",
"regenerator-runtime": "^0.13.2",
"simple-git": "^1.110.0",
"xo": "^0.23.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}