generated from BuildForSDG/js-starter
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.49 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.49 KB
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
{
"name": "js-starter",
"version": "0.0.1",
"description": "A boilerplate for starting js code",
"keywords": [
"js-starter",
"boilerplate"
],
"private": true,
"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\"",
"lint:fix": "eslint \"src/**/*.js\" --fix",
"frontend": "yarn workspace frontend start",
"backend": "yarn workspace backend start",
"start": "concurrently --kill-others-on-fail \"yarn frontend\" \"yarn backend\""
},
"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": {
"@babel/preset-react": "^7.9.4",
"babel-plugin-inline-dotenv": "^1.5.0",
"concurrently": "^5.2.0"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"babel-jest": "^25.4.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"jest": "^25.4.0",
"parcel-bundler": "^1.12.4"
},
"browserslist": [
"last 1 Chrome versions"
],
"workspaces": [
"./src/*"
]
}