-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.66 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
{
"name": "@wombak/www-progress",
"version": "0.0.1",
"description": "A visual representation of the development progress on the @wombak/www project.",
"author": "Brad Adams <[email protected]> (https://breadadams.com/)",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/wombak/www-progress.git"
},
"bugs": {
"url": "https://github.com/wombak/www-progress/issues"
},
"homepage": "https://github.com/wombak/www-progress#readme",
"scripts": {
"prestart": "node scripts/gifs.js",
"start": "parcel index.html",
"build": "npm run prestart && parcel build index.html",
"format": "prettier --write .",
"lint": "eslint --ext .js --ext .jsx src"
},
"dependencies": {
"@octokit/rest": "latest",
"@styled-icons/evil": "latest",
"@styled-icons/material": "latest",
"@styled-icons/octicons": "latest",
"framer-motion": "latest",
"lodash.shuffle": "^4.2.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-intersection-observer": "^8.26.1",
"react-uid": "latest",
"react-use-dimensions": "latest",
"styled-components": "latest"
},
"devDependencies": {
"babel-eslint": "latest",
"dotenv": "latest",
"eslint": "latest",
"eslint-plugin-import": "latest",
"eslint-plugin-react": "latest",
"eslint-plugin-react-hooks": "latest",
"husky": "latest",
"parcel-bundler": "latest",
"parcel-plugin-static-files-copy": "latest",
"posthtml-expressions": "latest",
"prettier": "latest",
"pretty-quick": "latest"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && npm run lint"
}
}
}