-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.64 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
{
"name": "react-hook-tour",
"version": "1.0.0",
"description": "A product tour library using React Hooks",
"main": "dist/index.js",
"module": "lib/index.js",
"files": [
"lib/**/*",
"dist/**/*"
],
"scripts": {
"test": "jest",
"test:watch": "jest -i --watchAll",
"test:coverage": "jest --coverage",
"start": "parcel serve example/index.html",
"build": "npm run clean && webpack --config webpack.config.js --mode production",
"build:dev": "npm run clean && NODE_ENV=dev webpack --config webpack.config.js --mode development",
"build:watch": "npm run build:dev -- --watch",
"clean": "rm -rf dist/"
},
"author": "Ben March (https://github.com/benmarch)",
"repository": {
"type": "git",
"url": "https://github.com/benmarch/react-hook-tour.git"
},
"homepage": "https://github.com/benmarch/react-hook-tour",
"license": "ISC",
"devDependencies": {
"@babel/core": "7.9.0",
"@babel/plugin-transform-runtime": "7.9.0",
"@babel/preset-env": "7.9.5",
"@babel/preset-react": "7.9.4",
"@testing-library/react": "10.0.2",
"@testing-library/react-hooks": "3.2.1",
"babel-jest": "25.3.0",
"babel-loader": "8.1.0",
"jest": "25.3.0",
"parcel": "1.12.4",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-test-renderer": "16.13.1",
"sass": "1.26.3",
"webpack": "4.42.1",
"webpack-cli": "3.3.11",
"webpack-node-externals": "1.7.2"
},
"dependencies": {
"@babel/polyfill": "7.8.7",
"@popperjs/core": "2.2.3",
"react-popper": "2.2.2"
},
"optionalDependencies": {
"hone": "1.1.0"
},
"peerDependencies": {
"react": "^16.8.0"
}
}