-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.07 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
{
"name": "simple-frontend-starter",
"version": "1.0.1",
"description": "A clean, simple front-end starter",
"main": "src/index.js",
"scripts": {
"lint": "eslint src/**/*.jsx src/specs/*.js",
"start": "parcel index.html",
"build": "rm -f dist/* && parcel build --no-source-maps index.html",
"test": "jest specs --watch"
},
"author": "Brian Gershon",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jest": "^21.26.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"jest": "^24.8.0",
"parcel-bundler": "^1.12.3"
},
"private": true,
"dependencies": {
"@babel/runtime": "^7.4.5",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6"
}
}