-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 803 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 803 Bytes
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
{
"name": "my-project",
"version": "1.0.0",
"description": "Should always check if the planet will be hit",
"main": "index.js",
"scripts": {
"dev": "parcel serve src/index.html",
"build":"parcel build src/index.html",
"test": "node tests/*.js"
},
"browserslist": [
"last 1 Chrome versions"
],
"author": "Remy Sharp (https://remysharp.com)",
"license": "MIT",
"dependencies": {
"date-fns": "^2.11.1",
"format-number": "^3.0.0",
"react": ">=16.8",
"react-async-hook": "^3.6.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"axios": "^0.19.2",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.18.3",
"parcel-bundler": "^1.12.4",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.0.2"
}
}