-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.31 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
{
"name": "bears-team-07",
"version": "1.0.0",
"description": "Flash Note",
"main": "index.js",
"scripts": {
"test": "",
"format": "prettier --write \"src/**/*.{js,jsx}\"",
"lint": "eslint **/*.{js,jsx} --quiet",
"dev": "parcel src/index.html",
"build": "parcel build --public-url ./dist/ src/index.html",
"start": "babel-node src/server/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chingu-voyage7/Bears-Team-07.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/chingu-voyage7/Bears-Team-07/issues"
},
"homepage": "https://github.com/chingu-voyage7/Bears-Team-07#readme",
"dependencies": {
"@reach/router": "^1.2.1",
"babel-cli": "^6.26.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"express": "^4.16.4",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"styled-components": "^4.1.1"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"eslint": "^5.9.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"parcel-bundler": "^1.10.3",
"prettier": "^1.15.2"
}
}