-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.79 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
56
57
58
59
60
61
62
63
64
{
"name": "Randomizer",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watchAll",
"start": "parcel index.html -p 3000 --open",
"build": "parcel build index.html --public-url /Randomizer",
"deploy": "rm -rf dist/ && yarn build && NODE_DEBUG=gh-pages gh-pages -d dist"
},
"author": "Tetiana Platonova",
"license": "MIT",
"dependencies": {
"autoprefixer": "^9.1.0",
"classnames": "^2.2.6",
"gh-pages": "^2.0.1",
"postcss-modules": "^1.3.2",
"prop-types": "^15.6.2",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-howler": "^3.7.4"
},
"devDependencies": {
"@babel/core": "^7.0.0-0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^7.2.3",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-react-app": "^3.1.2",
"babel-preset-stage-0": "^6.24.1",
"enzyme": "^3.6.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-react-app": "^2.1.0",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.10.0",
"jest": "^23.5.0",
"jsdom": "^12.0.0",
"node-sass": "^4.9.3",
"parcel-bundler": "^1.9.7"
},
"jest": {
"testRegex": "((\\.|/)(test))\\.js$",
"moduleFileExtensions": [
"jsx",
"js"
],
"moduleDirectories": [
"node_modules",
"src"
],
"rootDir": "src",
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|scss)$": "identity-obj-proxy"
}
}
}