-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.42 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
66
67
68
69
70
71
72
73
{
"name": "d4i-movies",
"version": "1.0.0",
"description": "D4i - Movies app",
"main": "lib/index.js",
"scripts": {
"start": "concurrently --kill-others \"yarn run server\" \"webpack-dev-server -d --mode=development\"",
"server": "json-server --watch db.json",
"dev": "webpack -d --mode=development",
"pro": "webpack -p --mode=production",
"build-gates": "webpack -p --mode=production",
"test": "jest --config ./jest.config.js",
"test:coverage": "jest --config ./jest.config.js --coverage",
"transpile": "babel --plugins @babel/plugin-transform-react-jsx src/ --out-dir lib/"
},
"author": "Javier Maestre <[email protected]>",
"license": "ISC",
"devDependencies": {
"@babel/cli": "~7.2.3",
"@babel/core": "~7.3.3",
"@babel/plugin-transform-react-jsx": "~7.3.0",
"@babel/plugin-transform-runtime": "~7.2.0",
"@babel/preset-env": "~7.3.1",
"@babel/preset-react": "~7.0.0",
"babel-core": "~7.0.0-bridge.0",
"babel-jest": "~24.1.0",
"babel-loader": "~8.0.4",
"babel-plugin-lodash": "~3.3.4",
"concurrently": "^4.1.0",
"css-loader": "~2.1.0",
"dotenv": "~6.2.0",
"dotenv-webpack": "~1.7.0",
"enzyme": "~3.9.0",
"enzyme-adapter-react-16": "~1.9.1",
"eslint": "~5.14.1",
"eslint-config-airbnb": "~17.1.0",
"eslint-loader": "~2.1.1",
"eslint-plugin-import": "~2.16.0",
"eslint-plugin-jsx-a11y": "~6.2.1",
"eslint-plugin-react": "~7.12.4",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"identity-obj-proxy": "~3.0.0",
"jest": "~24.1.0",
"jest-environment-jsdom": "~24.0.0",
"jest-environment-jsdom-global": "~1.1.0",
"jest-enzyme": "~7.0.0",
"json-server": "^0.15.0",
"mini-css-extract-plugin": "~0.5.0",
"node-sass": "4.12.0",
"postcss-loader": "~3.0.0",
"postcss-scss": "~2.0.0",
"sass-loader": "~7.1.0",
"stylelint": "~10.1.0",
"stylelint-config-recess-order": "~2.0.2",
"stylelint-config-standard": "~18.3.0",
"stylelint-webpack-plugin": "~0.10.5",
"webpack": "~4.29.5",
"webpack-bundle-analyzer": "~3.3.2",
"webpack-cli": "~3.2.3",
"webpack-dev-server": "~3.2.0",
"webpack-rtl-plugin": "~1.8.0"
},
"dependencies": {
"@babel/polyfill": "~7.2.5",
"@babel/runtime": "~7.3.1",
"axios": "^0.18.0",
"lodash": "^4.17.11",
"react": "~16.8.2",
"react-dom": "~16.8.2",
"react-router-dom": "~4.3.1"
}
}