forked from crowdbotics/modules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.72 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
{
"name": "crowdbotics-modules",
"version": "1.0.0",
"description": "# React Native Scaffold",
"main": "index.js",
"type": "module",
"engines": {
"node": ">14.0"
},
"scripts": {
"demo": "node scripts/demo.js",
"add": "node scripts/add.js",
"remove": "node scripts/remove.js",
"parse": "node scripts/parse.js",
"dist": "node scripts/parse.js --write",
"info": "node scripts/info.js",
"cookie": "node scripts/cookie.js",
"raw": "node scripts/raw.js",
"template": "node scripts/template.js",
"bootstrap": "npm run demo; npm run raw; npm run cookie; npm run parse",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "yarn run eslint modules scripts",
"commit-module": "node scripts/commit-module.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/crowdbotics/modules.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/crowdbotics/modules/issues"
},
"homepage": "https://github.com/crowdbotics/modules#readme",
"dependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.18.5",
"@babel/generator": "^7.14.9",
"@babel/parser": "^7.18.8",
"@babel/preset-env": "^7.18.2",
"@babel/template": "^7.16.7",
"@babel/types": "^7.18.8",
"ajv": "^8.11.0",
"ajv-formats": "^2.1.1",
"find": "^0.3.0",
"fs-extra": "^10.1.0",
"prettier": "^2.6.2"
},
"devDependencies": {
"@react-native-community/cli": "5.0.1",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-react": "^7.30.0",
"react-native": "0.64.2"
}
}