-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.91 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.91 KB
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
{
"name": "React-Chillflix",
"version": "1.0.0",
"description": "Chillflix built with React",
"main": "server.js",
"repository": "git@github.com:jonathanv3232/React-Chillflix.git",
"author": "Jonathan Vargas <jonathanv3232@gmail.com>",
"license": "MIT",
"scripts": {
"test": "jest",
"test:update": "jest -u",
"test:coverage": "jest --coverage",
"dev": "node_modules/webpack-dev-server/bin/webpack-dev-server.js",
"watch": "node_modules/webpack/bin/webpack.js --watch",
"build": "node_modules/webpack/bin/webpack.js",
"lint": "node_modules/eslint/bin/eslint.js **/*.{js,jsx}",
"format": "node_modules/prettier/bin-prettier.js --write --single-quote --tab-width=2 --print-width=80 --parser=flow \"js/**/*.{js,jsx}\" "
},
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
},
"dependencies": {
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-hot-loader": "^4.0.0",
"react-router-dom": "^4.2.2",
"styled-components": "^3.1.6"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.3",
"eslint": "^4.17.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.6.1",
"flow-bin": "^0.69.0",
"jest": "^22.4.3",
"prettier": "^1.10.2",
"react-test-renderer": "^16.2.0",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.11.1"
}
}