-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.17 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
{
"name": "a-hooks",
"version": "0.0.1",
"description": "M",
"author": "Eliran Levy, Roei Berkovich",
"license": "MIT",
"repository": "",
"main": "dist/index.js",
"module": "dist/index.modern.js",
"source": "src/index.js",
"engines": {
"node": ">=10"
},
"peerDependencies": {
"react": "~16.8.0",
"react-dom": "~16.8.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babelrc-rollup": "^3.0.0",
"node-sass": "^4.7.2",
"postcss-modules": "^1.1.0",
"rollup": "^0.54.0",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-node-resolve": "^3.0.2",
"rollup-plugin-postcss": "^1.2.4"
},
"scripts": {
"build": "rimraf dist && rollup --silent -c",
"build:watch": "rollup -c -w",
"start": "NODE_ENV=development BABEL_ENV=development PORT=8000 server --open",
"test": "node test/test.js",
"pretest": "npm run build"
},
"files": [
"dist"
],
"dependencies": {
"prop-types": "^15.7.2",
"react-scripts": "^4.0.3"
}
}