This repository has been archived by the owner on Sep 15, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
110 lines (110 loc) · 3.08 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "proto-watch",
"version": "1.1.0",
"description": "Scaffoling for a proto watch app",
"author": "LevelUp",
"repository": {
"type": "git",
"url": "https://github.com/twlevelup/watch_edition_react"
},
"scripts": {
"test": "jest",
"test:dev": "npm run test -- --watchAll",
"test:ci": "jest --coverage --ci",
"test:coverage": "jest --coverage",
"start": "webpack-dev-server",
"build": "rm -rf ./build && NODE_ENV=\"production\" webpack",
"lint": "eslint ./src ./webpack.config.js -f table --ext .js --ext .jsx",
"lint:fix": "npm run lint -- --fix",
"precommit": "npm run test:ci && npm run lint"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-loader": "^7.1.1",
"babel-plugin-syntax-decorators": "^6.13.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babel-runtime": "^6.23.0",
"css-loader": "0.28.4",
"enzyme": "^2.9.1",
"enzyme-matchers": "^3.6.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.2",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^2.29.0",
"http-server": "^0.10.0",
"jest": "^20.0.4",
"jest-css-modules": "^1.1.0",
"jest-enzyme": "^3.6.1",
"prop-types": "^15.5.10",
"react-test-renderer": "^15.6.1",
"redux-mock-store": "^1.2.3",
"style-loader": "^0.18.2",
"webpack": "^3.3.0",
"webpack-dev-server": "^2.6.1"
},
"dependencies": {
"babel-polyfill": "^6.23.0",
"history": "^4.5.1",
"moment": "^2.18.1",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-moment": "^0.6.0",
"react-redux": "^5.0.5",
"react-router": "^4.1.1",
"react-router-redux": "^5.0.0-alpha.6",
"react-scroll": "^1.5.4",
"redux": "^3.7.2"
},
"babel": {
"presets": [
"es2015",
"react",
"stage-1"
],
"plugins": [
"transform-class-properties"
]
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!*.css",
"!**/index.js"
],
"transform": {
"^.+\\.jsx?$": "babel-jest",
".*": "<rootDir>/node_modules/jest-css-modules"
},
"setupTestFrameworkScriptFile": "./setupTests.js",
"unmockedModulePathPatterns": [
"react",
"enzyme",
"jest-enzyme"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js"
},
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 97,
"lines": 100,
"statements": 100
}
}
}
}