-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.43 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
47
48
49
50
51
52
53
54
55
{
"name": "funny_alphabet",
"version": "1.0.2",
"description": "interactive alphabet app",
"scripts": {
"build": "rm -rf dist && parcel build src/index.html --public-url /alphabet && cp ./dist/index.html ./dist/404.html",
"start": "rm -rf dist .cache && parcel src/index.html -p 3000",
"deploy": "gh-pages -d dist",
"lint": "./node_modules/.bin/eslint src/js/**/*.{js,jsx}",
"lint-fix": "./node_modules/.bin/eslint src/js/**/*.{js,jsx} --fix"
},
"keywords": [
"play",
"game",
"learn",
"funny"
],
"contributors": [
{
"name": "Dmitriev Viacheslav",
"email": "slavutich.org@gmail.com"
},
{
"name": "Abrosenkov Andriy",
"email": "abrosenkov91@gmail.com"
},
{
"name": "Kharchenko Svitlana",
"email": "lano4ka44@gmail.com"
},
{
"name": "Bardovskiy Oleksandr",
"email": "alexandr8558@gmail.com"
}
],
"license": "MIT",
"dependencies": {
"prop-types": "^15.6.2",
"react": "^16.6.0",
"react-audio-player": "^0.10.0",
"react-dom": "^16.6.0",
"react-router-dom": "^4.3.1"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^4.11.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"gh-pages": "^1.2.0",
"parcel-bundler": "^1.10.3",
"parcel-plugin-sw-precache": "^1.0.2"
}
}