-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.71 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
{
"name": "react-coming",
"version": "1.0.6",
"description": "React component rendering a simple page with a countdown timer.",
"keywords": [
"react",
"react-library",
"coming",
"coming-soon",
"countdown",
"component"
],
"author": "Damian Cyntler",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cyntler/react-coming.git"
},
"engines": {
"node": ">=10"
},
"scripts": {
"start": "concurrently \"webpack --watch\" \"tsc --watch\"",
"build": "rimraf ./lib && webpack -c ./webpack.config.production.js && tsc",
"lint": "eslint ./ --ext=tsx,ts",
"prettier": "prettier --check 'src/**/*.{ts,tsx}'",
"test": "jest",
"prepublishOnly": "npm run lint && npm run prettier && npm run test && npm run build"
},
"dependencies": {
"@types/react": "^17.0.3",
"@types/styled-components": "^5.1.9",
"react": "^17.0.2",
"styled-components": "^5.2.1"
},
"devDependencies": {
"@babel/preset-env": "^7.13.12",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.13.0",
"@testing-library/react": "^11.2.5",
"@types/jest": "^26.0.22",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"babel-loader": "^8.2.2",
"concurrently": "^6.0.0",
"eslint": "^7.22.0",
"eslint-plugin-react": "^7.23.1",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"typescript": "^4.2.3",
"webpack": "^5.28.0",
"webpack-cli": "^4.5.0",
"webpack-node-externals": "^2.5.2"
},
"peerDependencies": {
"react": ">=16.8",
"styled-components": ">=5.0"
}
}