-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.24 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": "template-react-app",
"version": "1.0.0",
"description": "A simple template to get a React app going.",
"main": "index.js",
"keywords": [],
"author": "github.com/azuzunaga",
"license": "MIT",
"engines": {
"node": "10.16.3",
"yarn": "1.19.0"
},
"scripts": {
"watch": "parcel watch src/index.html -d public",
"build-prod": "parcel build src/index.html -d public",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"start": "parcel src/index.html -d public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/azuzunaga/template-react-app.git"
},
"dependencies": {
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/plugin-transform-runtime": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/preset-react": "^7.0.0",
"babel-jest": "^24.5.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.11.2",
"enzyme-to-json": "^3.3.5",
"eslint": "^5.16.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-react": "^7.12.4",
"jest": "^24.5.0",
"parcel-bundler": "^1.12.3",
"prettier": "^1.18.2",
"redux-mock-store": "^1.5.3"
}
}