-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.64 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.64 KB
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
{
"name": "react-scroll-activator",
"version": "2.0.0",
"description": "A React component that watches for a scroll event",
"main": "dist/react-scroll-activator.js",
"scripts": {
"compile": "babel src --lose --out-dir lib",
"build": "webpack --mode production",
"start": "webpack-dev-server --mode development --open --hot",
"test": "jest",
"format": "prettier-standard '*.js'",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maecapozzi/react-scroll-activator.git"
},
"keywords": [
"React"
],
"author": "Mae Capozzi",
"license": "MIT",
"bugs": {
"url": "https://github.com/maecapozzi/react-scroll-activator/issues"
},
"homepage": "https://github.com/maecapozzi/react-scroll-activator#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-inline-environment-variables": "^0.3.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"cross-env": "^5.1.4",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"husky": "^0.14.3",
"jest": "^22.4.3",
"lint-staged": "^7.0.0",
"prettier-standard": "^8.0.0",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0"
},
"lint-staged": {
"*.js": [
"prettier-standard",
"git add"
]
},
"dependencies": {
"prop-types": "^15.6.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"stack-utils": "^1.0.1"
}
}