-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
122 lines (122 loc) · 3.49 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "@enact/cli",
"version": "2.7.1",
"description": "Full-featured build environment tool for Enact applications.",
"main": "index.js",
"author": "Jason Robitaille <jason.robitaille@lge.com>",
"repository": "https://github.com/enactjs/cli",
"license": "Apache-2.0",
"bin": {
"enact": "./bin/enact.js"
},
"engines": {
"node": ">=6.4.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint .",
"fix": "eslint . --fix"
},
"prettier": {
"printWidth": 120,
"useTabs": true,
"tabWidth": 4,
"singleQuote": true,
"bracketSpacing": false
},
"keywords": [
"enact",
"toolkit",
"react",
"mobile",
"TV",
"LG",
"webOS",
"upupdowndownleftrightleftrightbastart"
],
"dependencies": {
"@babel/core": "7.4.3",
"@babel/plugin-proposal-class-properties": "7.4.0",
"@babel/plugin-proposal-export-default-from": "7.2.0",
"@babel/plugin-proposal-export-namespace-from": "7.2.0",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/plugin-transform-modules-commonjs": "7.4.3",
"@babel/plugin-transform-react-inline-elements": "7.2.0",
"@babel/preset-env": "7.4.3",
"@babel/preset-react": "7.0.0",
"@babel/preset-typescript": "7.3.3",
"@enact/dev-utils": "2.5.1",
"@enact/template-moonstone": "3.0.0",
"acorn": "^6.0.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.1",
"babel-jest": "24.7.1",
"babel-loader": "8.0.5",
"babel-plugin-dev-expression": "0.2.1",
"babel-plugin-dynamic-import-node": "2.2.0",
"babel-plugin-transform-rename-import": "2.3.0",
"case-sensitive-paths-webpack-plugin": "2.2.0",
"chai": "4.2.0",
"chalk": "2.4.2",
"core-js": "3.0.1",
"cross-spawn": "6.0.5",
"css-loader": "2.1.1",
"dotenv": "7.0.0",
"dotenv-expand": "5.1.0",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.2",
"eslint": "5.16.0",
"eslint-config-enact": "1.6.0",
"eslint-loader": "2.1.2",
"eslint-plugin-babel": "5.3.0",
"eslint-plugin-enact": "0.2.0",
"eslint-plugin-jest": "22.4.1",
"eslint-plugin-react": "7.12.4",
"eslint-plugin-react-hooks": "1.6.0",
"expose-loader": "0.7.5",
"file-loader": "3.0.1",
"filesize": "4.1.2",
"fs-extra": "7.0.1",
"glob": "7.1.3",
"global-modules": "2.0.0",
"html-webpack-plugin": "4.0.0-alpha",
"identity-obj-proxy": "3.0.0",
"jest": "24.7.1",
"less": "3.9.0",
"less-loader": "4.1.0",
"less-plugin-npm-import": "2.1.0",
"license-checker": "25.0.1",
"mini-css-extract-plugin": "0.5.0",
"minimist": "1.2.0",
"optimize-css-assets-webpack-plugin": "5.0.1",
"postcss-flexbugs-fixes": "4.1.0",
"postcss-global-import": "1.0.6",
"postcss-loader": "3.0.0",
"postcss-preset-env": "6.6.0",
"postcss-resolution-independence": "1.0.0",
"raw-loader": "2.0.0",
"react": "16.8.6",
"react-dev-utils": "8.0.0",
"react-dom": "16.8.6",
"react-test-renderer": "16.8.6",
"resolution-independence": "1.0.0",
"resolve": "1.10.0",
"semver": "6.0.0",
"strip-ansi": "5.2.0",
"style-loader": "0.23.1",
"tar": "4.4.8",
"terser-webpack-plugin": "1.2.3",
"v8-compile-cache": "2.0.2",
"validate-npm-package-name": "3.0.0",
"webpack": "4.29.6",
"webpack-dev-server": "3.2.1"
},
"devDependencies": {
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"prettier": "^1.19.1"
}
}