-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.59 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
{
"name": "devcontra",
"version": "0.0.16",
"license" : "MIT",
"description": "Dev Activity Timeline",
"main": "dist/index.js",
"peerDependencies": {
"react": "^16.8.0"
},
"files": [
"dist/*"
],
"dependencies": {
"@babel/runtime": "^7.5.5",
"aws-amplify": "^1.1.38",
"d3-layout-timeline-api": "^1.0.7",
"moment": "^2.24.0",
"prop-types": "^15.7.2",
"webpack": "^4.39.3"
},
"scripts": {
"prepublishOnly": "babel ./src --out-dir ./dist -s inline",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack --watch",
"build": "webpack",
"lint-fix": "eslint . --ext .js --fix; exit 0",
"lint": "eslint . --ext .js; exit 0"
},
"author": {
"name": "Cole Marsteller",
"email": "cole@colemars.dev"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"eslint": "^6.2.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"prettier": "^1.18.2",
"react": "^16.9.0",
"react-dom": "16.10.2",
"webpack-cli": "^3.3.8"
}
}