generated from BuildForSDG/js-starter
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
74 lines (74 loc) · 1.91 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
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "js-starter",
"version": "0.0.1",
"description": "A boilerplate for starting js code",
"keywords": [
"js-starter",
"boilerplate"
],
"private": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"test": "__tests__"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:cover": "jest --coverage",
"lint": "eslint \"src/**/*.js\"",
"cslint": "stylelint \"src/**/*.css\"",
"start": "parcel ./src/index.html"
},
"author": {
"name": "Build For SDG",
"email": "buildforsdg@andela.com"
},
"homepage": "https://github.com/BuildForSDG/js-starter#readme",
"repository": {
"type": "git",
"url": "https://github.com/BuildForSDG/js-starter.git"
},
"bugs": {
"url": "https://github.com/BuildForSDG/js-starter/issues"
},
"license": "MIT",
"dependencies": {
"axios": "^0.19.2",
"bootstrap": "^4.5.0",
"jquery": "^3.5.1",
"popper.js": "^1.16.1",
"prop-types": "^15.7.2",
"moment": "^2.26.0",
"react": "^16.13.1",
"react-bootstrap": "^1.0.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"recharts": "^1.8.5",
"redux": "^4.0.5",
"redux-form": "^8.3.5",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"babel-jest": "^25.4.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-react": "^7.19.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^25.4.0",
"parcel-bundler": "^1.12.4",
"redux-devtools-extension": "^2.13.8",
"stylelint": "^13.3.3",
"stylelint-config-standard": "^20.0.0"
},
"browserslist": [
"last 1 Chrome versions"
]
}