forked from sultan99/react-on-lambda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.55 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
{
"name": "react-on-lambda",
"version": "0.6.1",
"description": "A JavaScript library for building React applications in more functional way. Alternative to JSX.",
"sideEffects": false,
"scripts": {
"start": "jest --watch",
"test": "jest --coverage",
"lint": "eslint src/**",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"prepare": "npm run build",
"build": "webpack -p",
"prebuild": "rimraf dist/**"
},
"author": {
"name": "Sultan Arziyev",
"github": "https://github.com/sultan99"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sultan99/react-on-lambda"
},
"main": "dist/react-on-lambda.min.js",
"module": "src/index.js",
"peerDependencies": {
"react": "^16.8.5",
"styled-components": "^4.2.0"
},
"optionalDependencies": {
"styled-components": "^4.2.0"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"coveralls": "^3.0.4",
"eslint": "^5.16.0",
"eslint-plugin-better-styled-components": "^1.1.1",
"eslint-plugin-jest": "^22.6.4",
"eslint-plugin-react": "^7.13.0",
"jest": "^24.8.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"rimraf": "^2.6.3",
"styled-components": "^4.2.0",
"webpack": "^4.33.0",
"webpack-cli": "^3.3.2"
},
"keywords": [
"react",
"lambda",
"no-jsx",
"no jsx",
"alternative to jsx.",
"fp"
]
}