This repository has been archived by the owner on Sep 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
94 lines (94 loc) · 2.74 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
{
"name": "wdrslides",
"version": "1.2.1",
"description": "webpack driven react slides framework",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/konqi/wdrslides.git"
},
"scripts": {
"coverage": "jest --coverage",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"test": "jest --watch --coverage",
"dist": "rm -rf dist && webpack --mode=production",
"build": "rm -rf dist && webpack --mode=development",
"watch": "webpack -w",
"prepublish": "npm run dist"
},
"author": "Johann (konqi) Wagner",
"license": "MIT",
"devDependencies": {
"@types/enzyme": "^3.1.9",
"@types/enzyme-adapter-react-16": "^1.0.2",
"@types/jest": "^22.1.3",
"@types/lodash": "^4.14.104",
"@types/prop-types": "^15.5.2",
"@types/react": "^16.0.38",
"@types/react-dom": "^16.0.4",
"@types/react-redux": "^5.0.15",
"awesome-typescript-loader": "^3.5.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-jest": "^22.4.1",
"babel-loader": "^7.1.3",
"babel-plugin-react-css-modules": "^3.3.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^0.1.18",
"coveralls": "^3.0.0",
"css-loader": "^0.28.10",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.18.1",
"eslint-config-standard": "^11.0.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-standard": "^3.0.1",
"html-webpack-plugin": "^2.30.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^22.4.2",
"npm-run-all": "^4.1.2",
"postcss": "^6.0.19",
"postcss-cssnext": "^3.1.0",
"postcss-loader": "^2.1.1",
"react-test-renderer": "^16.2.0",
"regenerator-runtime": "^0.11.1",
"style-loader": "^0.19.0",
"ts-jest": "^22.4.0",
"tslib": "^1.9.0",
"typesafe-actions": "^1.1.2",
"typescript": "^2.7.2",
"uglifyjs-webpack-plugin": "^1.2.2",
"webpack": "^4.0.1",
"webpack-cli": "^2.0.9",
"webpack-utf8-bom": "^1.1.3"
},
"dependencies": {
"@types/hammerjs": "^2.0.35",
"hammerjs": "^2.0.8",
"lodash": "^4.17.5",
"prop-types": "^15.6.1",
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$":
"<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "identity-obj-proxy"
},
"setupFiles": ["<rootDir>/src/setupTests.ts"],
"testRegex": "\\.(test|spec)\\.(jsx?|tsx?)$",
"moduleFileExtensions": ["ts", "tsx", "js", "jsx", "json", "node"],
"transform": {
"\\.tsx?$": "ts-jest",
"\\.jsx?$": "babel-jest"
}
}
}