This repository has been archived by the owner on Jun 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
67 lines (67 loc) · 1.92 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
{
"name": "react-available-times",
"version": "1.4.0",
"description": "A calendar to pick available time slots",
"main": "dist/main.js",
"repository": "git@github.com:trotzig/react-available-times.git",
"author": "Henric Trotzig <henric.trotzig@gmail.com>",
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && webpack",
"lint": "eslint . --ext=.js,.jsx",
"start-test": "node src/testServer.js",
"prepublish": "npm run test && npm run build",
"test": "npm run lint && jest"
},
"jest": {
"testRegex": "test.*-test\\.jsx?$",
"moduleNameMapper": {
"\\.css$": "identity-obj-proxy"
}
},
"dependencies": {
"moment": "^2.18.1",
"moment-timezone": "^0.5.13",
"prop-types": "^15.5.8"
},
"devDependencies": {
"autoprefixer": "^6.7.7",
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-jest": "^19.0.0",
"babel-loader": "^6.4.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.0",
"enzyme": "^2.8.2",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jest": "^19.0.1",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"express": "^4.15.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^19.0.2",
"postcss-loader": "^1.3.3",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-test-renderer": "^15.5.4",
"regenerator-runtime": "^0.10.3",
"rimraf": "^2.6.1",
"style-loader": "^0.16.1",
"webpack": "^2.4.1",
"webpack-dev-middleware": "^1.10.1",
"webpack-node-externals": "^1.5.4"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0, || ^16.0.0"
}
}