-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
79 lines (79 loc) · 1.86 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
{
"name": "react-coach-mark",
"version": "1.0.4",
"licenses" : [
{
"type": "MIT",
"url": "https://www.opensource.org/licenses/mit-license.php"
}
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"web",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/hashlucifer/react-coach-mark.git"
},
"keywords": [
"coach-mark",
"splash-screen",
"react"
],
"author": {
"name": "Harsh Mehta"
},
"peerDependencies": {
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"dependencies": {
"babel-plugin-import": "^1.13.0",
"cpx": "^1.5.0",
"cross-env": "^6.0.0",
"customize-cra": "^0.9.0",
"less": "^3.12.2",
"less-loader": "^5.0.0",
"react-app-rewired": "^2.1.0",
"react-docgen-typescript": "^1.16.0",
"react-router-dom": "^5.1.0",
"react-scripts": "^3.4.0",
"typescript": "^3.7.0",
"uuid": "^7.0.2",
"validator": "^12.1.0"
},
"scripts": {
"start": "cross-env react-app-rewired start",
"build-web": "cross-env react-app-rewired build",
"build": "cross-env tsc -p library.tsconfig.json && cross-env cpx 'src/lib/**/*.{png,jpg,svg,jpeg,less,scss,css}' dist && webpack --config library.webpack.config.js",
"test": "cross-env react-app-rewired test"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/jest": "^24.0.0",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"@types/react-router-dom": "^5.1.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"ts-loader": "^8.0.2",
"webpack-cli": "^3.3.12"
}
}