-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.24 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
74
75
76
77
{
"name": "pindrop-ui-challenge",
"version": "1.0.0",
"description": "Pindrop UI challenge to build a infinite scrollable grid for displaying movies",
"main": "src/js/app.js",
"scripts": {
"dev": "./node_modules/.bin/webpack-dev-server --config webpack.config.dev.js",
"build": "./node_modules/.bin/webpack --config webpack.config.dev.js",
"build:production": "./node_modules/.bin/webpack --config webpack.config.production.js",
"start": "./node_modules/.bin/webpack-dev-server --config webpack.config.production.js",
"test": "jest",
"test:watch": "jest --watch"
},
"homepage": "https://github.com/temilaj/react-webpack-starter",
"repository": "https://github.com/temilaj/react-webpack-starter.git",
"keywords": [
"react",
"Front End"
],
"author": "Shi Cheng <[email protected]>",
"license": "MIT",
"resolutions": {
"babel-core": "7.0.0-bridge.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"jsx"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"transform": {
"^.+\\.jsx$": "babel-jest",
"^.+\\.js$": "babel-jest"
},
"setupFiles": [
"<rootDir>/enzyme.config.js"
],
"testMatch": [
"**/?(*.)+(spec|test).js?(x)"
],
"testPathIgnorePatterns": [
"\\\\node_modules\\\\"
]
},
"dependencies": {
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"styled-components": "3.4.1"
},
"devDependencies": {
"@babel/cli": "7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "7.1.0",
"@babel/plugin-transform-modules-commonjs": "^7.4.3",
"@babel/plugin-transform-regenerator": "^7.4.3",
"@babel/preset-env": "^7.0.0-beta.51",
"@babel/preset-react": "^7.0.0-beta.51",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-loader": "^7.1.2",
"css-loader": "^0.28.9",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"enzyme-to-json": "^3.3.5",
"extract-text-webpack-plugin": "^3.0.2",
"jest": "23.6.0",
"jest-fetch-mock": "^2.1.2",
"react-hot-loader": "^3.1.3",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.11.1",
"webpack-merge": "^4.1.1"
}
}