-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.01 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
{
"name": "simple-frontend-starter",
"version": "1.0.0",
"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.1.2",
"@babel/plugin-transform-react-jsx": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"babel-core": "^7.0.0-bridge.0",
"eslint": "^5.8.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.26.2",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"jest": "^23.6.0",
"parcel-bundler": "^1.10.3"
},
"private": true,
"dependencies": {
"@babel/runtime": "^7.1.2",
"react": "^16.6.3",
"react-dom": "^16.6.3"
}
}