-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.7 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
{
"name": "react-isomorphic-scriptloader",
"version": "2.0.0",
"description": "Load scripts with ease",
"main": "lib/index.js",
"typings": "lib/typings/index.d.ts",
"module": "lib/esm/index.js",
"files": [
"lib/*"
],
"scripts": {
"lint": "(tsc -p . --noEmit) && (eslint . --ext .ts --ext .tsx) && (prettier -l src/*.tsx)",
"prepare": "yarn build:clean ; yarn build:esm ; yarn build:cjs ; yarn build:typings",
"build:esm": "tsc --module es2015 --target es2018 --outDir lib/esm",
"build:cjs": "tsc --module commonjs --target es5 --outDir lib/cjs",
"build:clean": "rm -rf lib",
"build:typings": "tsc --declaration --outDir lib/typings --emitDeclarationOnly"
},
"repository": {
"type": "git",
"url": "https://github.com/archcorsair/react-isomorphic-scriptloader"
},
"keywords": [
"react",
"scripts",
"loader"
],
"author": "Daniel S <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/archcorsair/react-isomorphic-scriptloader/issues"
},
"dependencies": {},
"devDependencies": {
"@types/react": "^16.9.41",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"eslint": "7.2.0",
"eslint-config-airbnb": "18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsx-a11y": "^6.3.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "4.0.0",
"jasmine-fix": "^1.3.1",
"prettier": "^2.0.5",
"typescript": "^3.9.6"
},
"peerDependencies": {
"react": "*"
},
"engines": {
"node": ">= 8"
}
}