-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.17 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
{
"name": "schedule-picker",
"version": "0.1.0",
"description": "A React/material picker for weekly schedules",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/atropos-tech/nested-preview.git"
},
"scripts": {
"test": "jest --watch --coverage",
"dev-docs": "webpack-dev-server --config webpack.config.js --hot --inline --color --progress --open --mode development",
"build-docs": "rimraf ./docs && webpack --config webpack.config.js --mode=production && copyfiles -u 1 ./public/* ./docs",
"transpile": "babel src --out-dir lib --ignore \"src/**/*.spec.js\"",
"lint": "eslint src",
"start": "npm run dev-docs"
},
"keywords": [
"component"
],
"author": "Duncan Thacker ([email protected])",
"license": "ISC",
"dependencies": {
"country-tz": "^1.0.0",
"create-react-class": "^15.6.3",
"downshift": "^3.2.2"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.3.1",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^8.0.5",
"copyfiles": "^2.1.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-15": "^1.3.0",
"enzyme-adapter-react-15.4": "^1.3.0",
"eslint": "^5.13.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.2.2",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.12.4",
"jest": "^23.6.0",
"jest-environment-enzyme": "^7.0.1",
"jest-enzyme": "^7.0.1",
"material-ui": "^1.0.0-beta.39",
"prop-types": "^15.6.2",
"react": "^15.6.2",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^15.6.2",
"rimraf": "^2.6.3",
"uuid-v4": "^0.1.0",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.1.14"
},
"peerDependencies": {
"react": "^15.6"
},
"jest": {
"setupTestFrameworkScriptFile": "jest-enzyme",
"testEnvironment": "enzyme",
"testEnvironmentOptions": {
"enzymeAdapter": "react15.4"
},
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js",
"!src/sandbox.js"
]
}
}