-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 882 Bytes
/
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
{
"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": "npm run test && 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",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"parcel-bundler": "^1.12.4",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.8.8"
},
"directories": {
"test": "tests"
},
"keywords": []
}