-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
41 lines (41 loc) · 1.2 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
{
"name": "react-inject-env",
"version": "2.1.0",
"description": "Tool to inject environment variables into your React build",
"author": "es-lynn",
"license": "MIT",
"repository": "https://github.com/codegowhere/react-inject-env",
"main": "dist/index.js",
"bin": {
"react-inject-env": "dist/cli.js"
},
"scripts": {
"prepublish": "tsc --incremental false",
"compile": "tsc --noEmit && eslint src/**/*.ts tests/**/*.ts index.ts",
"test": "jest",
"test:coverage": "jest --collectCoverage",
"lint": "eslint src/**/*.ts tests/**/*.ts index.ts --fix"
},
"dependencies": {
"@aelesia/commons": "^0.5.0",
"@rushstack/ts-command-line": "^4.9.0",
"replace-in-file": "^6.3.2",
"shelljs": "^0.8.4",
"dotenv": "^8.2.0"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/node": "^13.1.4",
"@types/shelljs": "^0.8.9",
"@typescript-eslint/eslint-plugin": "^2.14.0",
"@typescript-eslint/parser": "^2.10.0",
"dotenv-cli": "^4.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^26.6.3",
"prettier": "^2.4.1",
"ts-jest": "^26.5.6",
"typescript": "^4.4.3"
}
}