-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
61 lines (61 loc) · 1.59 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.4",
"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 --mode production",
"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.0.0 < 19.0.0",
"styled-components": ">= 4.0.0 < 6.0.0"
},
"optionalDependencies": {
"styled-components": "^5.3.5"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"babel-eslint": "^10.0.3",
"babel-jest": "^28.0.2",
"babel-loader": "^8.2.5",
"coveralls": "^3.1.1",
"eslint": "^8.14.0",
"eslint-plugin-better-styled-components": "^1.1.2",
"eslint-plugin-jest": "^26.1.5",
"eslint-plugin-react": "^7.29.4",
"jest": "^28.0.2",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"rimraf": "^3.0.2",
"styled-components": "^5.3.5",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2"
},
"keywords": [
"react",
"lambda",
"no-jsx",
"no jsx",
"alternative to jsx.",
"fp"
]
}