-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.28 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
{
"name": "personal-website",
"version": "1.0.0",
"description": "My own developer profile",
"main": "index.jsx",
"scripts": {
"dev": "parcel src/index.html --open",
"test": "echo \"Error: no test specified\" && exit 1",
"prod": "parcel build src/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/david-mooney/personal-website.git"
},
"keywords": [],
"author": "David Mooney",
"license": "ISC",
"bugs": {
"url": "https://github.com/david-mooney/personal-website/issues"
},
"homepage": "https://github.com/david-mooney/personal-website#readme",
"dependencies": {
"gsap": "^2.1.3",
"parcel-bundler": "^1.12.3",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-flip-toolkit": "^6.5.9",
"sass": "^1.18.0",
"styled-components": "^4.2.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"babel-eslint": "^10.0.1",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0"
},
"alias": {
"config": "./src/scripts/config"
}
}