This repository has been archived by the owner on Apr 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.65 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
{
"name": "@10up/countdown-timer",
"version": "0.2.0",
"author": "10up",
"description": "A countdown timer component.",
"main": "./src/countdown-timer.js",
"scripts": {
"start": "npm install && npm run build",
"build": "webpack",
"watch": "webpack --watch",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/10up/countdown-timer.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/10up/countdown-timer/issues"
},
"homepage": "https://github.com/10up/countdown-timer#readme",
"devDependencies": {
"@10up/eslint-config": "^2.0.0",
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.0.6",
"browser-sync": "^2.26.7",
"browser-sync-webpack-plugin": "^2.2.2",
"core-js": "^3.1.4",
"css-loader": "^1.0.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-loader": "^2.2.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsdoc": "^22.2.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.0",
"jest": "^24.9.0",
"mini-css-extract-plugin": "^0.4.5",
"postcss": "^7.0.23",
"postcss-import": "^12.0.0",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^5.3.0",
"prettier": "^2.0.5",
"puppeteer": "^2.0.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
},
"dependencies": {
"@babel/polyfill": "^7.7.0"
}
}