-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 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
{
"name": "airfoil-schematics",
"version": "1.0.0",
"description": "React Native boilerplate templates for the Airfoil CLI",
"main": "./lib/index.js",
"scripts": {
"install-blimp": "ECHO 'NOTICE: USE AIRFOIL CLI TO INIT A NEW APP!!' && cd templates/blimp && yarn install",
"install-jet": "ECHO 'NOTICE: USE AIRFOIL CLI TO INIT A NEW APP!!' && cd templates/jet && yarn install",
"install-templates": "npm-run-all --parallel install-blimp install-jet",
"ios-blimp": "cd templates/blimp && yarn ios",
"ios-jet": "cd templates/jet && yarn ios",
"android-blimp": "cd templates/blimp && yarn android",
"android-jet": "cd templates/jet && yarn android",
"test-blimp": "cd templates/blimp && yarn test",
"test-jet": "cd templates/jet && yarn test",
"jest": "jest",
"test": "npm-run-all jest test-blimp test-jet"
},
"repository": {
"type": "git",
"url": "git+https://github.com/teamairship/airfoil-schematics.git"
},
"author": "builders@teamairship.com",
"license": "ISC",
"bugs": {
"url": "https://github.com/teamairship/airfoil-schematics/issues"
},
"homepage": "https://github.com/teamairship/airfoil-schematics#readme",
"devDependencies": {
"@babel/core": "^7.13.1",
"@babel/preset-env": "^7.13.5",
"@babel/preset-typescript": "^7.13.0",
"@types/jest": "^26.0.20",
"@typescript-eslint/parser": "^4.15.2",
"babel-jest": "^26.6.3",
"eslint": "^7.20.0",
"eslint-plugin-jest": "^24.1.5",
"jest": "^26.6.3",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.2"
}
}