-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 980 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": "dailydrinks-assignment",
"version": "1.0.0",
"description": "",
"main": "index.js",
"keywords": [],
"author": "Leonard Lin <gwokae@gmail.com>",
"license": "UNLICENSED",
"scripts": {
"clean": "rm dist/bundle.js",
"start": "parcel src/index.html -p 6612",
"build-prod": "parcel build src/index.html",
"lint": "eslint src"
},
"dependencies": {
"normalize.css": "^8.0.1",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"uuid": "^3.3.2"
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.4.2",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"parcel-bundler": "^1.12.3",
"sass": "^1.19.0"
}
}