This repository has been archived by the owner on Feb 7, 2024. It is now read-only.
forked from wix-incubator/react-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.71 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "react-templates",
"version": "0.6.3",
"description": "Light weight templates for react -> write html get valid react code",
"main": "./dist/cli.js",
"bin": {
"rt": "./bin/rt.js"
},
"scripts": {
"build": "yarn run lint && yarn run test",
"lint": "eslint . --cache",
"test1": "babel-node test/src/test.js",
"pretest": "yarn run lint",
"tests": "mocha test/src/**/*.unit.js",
"test-cov": "nyc mocha -- test/src/**/*.unit.js --require test/support/env --reporter dot --check-leaks test/ test/acceptance/",
"patch": "yarn version --patch && git commit -a -m\"update version to %s\" && git push && git push --tags",
"minor": "yarn version --minor && git commit -a -m\"update version to %s\" && git push && git push --tags",
"major": "yarn version --major && git commit -a -m\"update version to %s\" && git push && git push --tags",
"buildwp": "webpack --config webpack-production.config.js --progress --profile --colors",
"babel": "babel src/ --out-dir dist",
"all": "yarn run lint && yarn run test",
"prepack": "yarn run babel"
},
"repository": {
"type": "git",
"url": "git://github.com/wix/react-templates.git"
},
"author": "Avi Marcus",
"license": "MIT",
"bugs": {
"url": "https://github.com/wix/react-templates/issues"
},
"files": [
"dist",
"bin"
],
"homepage": "https://github.com/wix/react-templates",
"dependencies": {
"chalk": "4.1.2",
"cheerio": "1.0.0-rc.10",
"css": "^3.0.0",
"escodegen": "^2.0.0",
"glob": "^9.3.0",
"lodash": "^4.17.21",
"nightly-esprima": "^2021.8.30",
"normalize-html-whitespace": "^1.0.0",
"optionator": "^0.9.1",
"text-table": "^0.2.0"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"babel-eslint": "^10.1.0",
"babel-loader": "^9.1.2",
"brace": "^0.11.1",
"brfs": "^2.0.2",
"coveralls": "^3.1.1",
"create-react-class": "^15.7.0",
"eslint": "^8.36.0",
"eslint-config-wix-editor": "^8.4.2",
"eslint-plugin-lodash": "^7.4.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-wix-editor": "^3.3.0",
"grunt": "^1.6.1",
"grunt-babel": "^8.0.0",
"grunt-browserify": "^6.0.0",
"grunt-contrib-requirejs": "^1.0.0",
"grunt-contrib-uglify": "^5.2.2",
"grunt-contrib-watch": "^1.1.0",
"grunt-eslint": "^24.0.1",
"json-loader": "^0.5.7",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-native": "^0.71.4",
"webpack": "^5.76.1"
},
"keywords": [
"templates",
"react-templates",
"react",
"reactjs",
"react.js",
"react-component",
"react component"
]
}