-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.99 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
65
{
"name": "macos-calculator",
"version": "0.1.0",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server",
"clean": "rimraf dist",
"production": "cross-env npm run clean && webpack --config webpack.production.config.js --progress --profile --colors",
"test": "jest",
"test:watch": "jest --watch",
"coverage": "jest --coverage",
"webpack:dev": "webpack --colors",
"webpack:prod": "webpack --config webpack.production.config.js --colors"
},
"author": "Kliment Petrov <[email protected]>",
"license": "MIT",
"dependencies": {
"cross-env": "5.2.0",
"react": "16.6.1",
"react-dom": "16.6.1",
"react-hot-loader": "4.3.12",
"react-router-dom": "4.3.0"
},
"devDependencies": {
"@babel/cli": "7.1.2",
"@babel/core": "^7.1.2",
"@babel/preset-env": "7.1.0",
"@babel/preset-react": "7.0.0",
"@babel/preset-stage-2": "7.0.0",
"@babel/register": "7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "9.0.0",
"babel-jest": "^23.6.0",
"babel-loader": "8.0.3",
"babel-preset-react-hmre": "1.1.1",
"copy-webpack-plugin": "4.6.0",
"css-hot-loader": "1.4.2",
"css-loader": "1.0.1",
"enzyme": "3.7.0",
"enzyme-adapter-react-16": "1.6.0",
"eslint": "5.0.0",
"eslint-config-airbnb": "17.1.0",
"eslint-loader": "2.1.1",
"eslint-plugin-import": "2.13.0",
"eslint-plugin-jsx-a11y": "6.1.2",
"eslint-plugin-react": "7.11.1",
"extract-text-webpack-plugin": "4.0.0-beta.0",
"file-loader": "1.1.11",
"html-webpack-plugin": "3.2.0",
"jest": "23.6.0",
"node-sass": "4.10.0",
"open-browser-webpack-plugin": "0.0.5",
"react-addons-test-utils": "15.6.2",
"react-test-renderer": "16.6.0",
"regenerator-runtime": "0.12.1",
"rimraf": "2.6.2",
"sass-loader": "7.1.0",
"style-loader": "0.23.1",
"uglifyjs-webpack-plugin": "1.3.0",
"url-loader": "1.1.2",
"webpack": "4.19.1",
"webpack-cli": "3.1.2",
"webpack-dev-server": "3.1.9"
}
}