-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
124 lines (124 loc) · 3.62 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
123
124
{
"name": "lscdiag",
"homepage": "https://wcjohnson.github.io/lscdiag",
"version": "0.1.0",
"private": true,
"dependencies": {
"@babel/standalone": "^7.1.0",
"@lightscript/runtime": "^0.1.1",
"@oigroup/prettier-babylon": "^1.4.5",
"babel-standalone": "^6.26.0",
"base64-url": "^1.3.3",
"brace": "^0.10.0",
"copy-to-clipboard": "^3.0.6",
"debounce-fn": "^1.0.0",
"hawks": "^0.1.4",
"observable-utils": "^0.1.4",
"pako": "^1.0.5",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-mdl": "^1.10.0",
"react-modal": "^1.7.7",
"react-router-dom": "^4.1.1",
"react-runkit": "^0.9.0",
"recompose": "^0.23.1",
"redux": "^3.6.0",
"redux-components": "^0.4.6",
"redux-components-list": "^0.4.7"
},
"devDependencies": {
"@babel/core": "7.1.0",
"@babel/plugin-transform-regenerator": "7.0.0",
"@babel/plugin-transform-runtime": "7.1.0",
"@babel/preset-env": "7.1.0",
"@babel/preset-react": "7.0.0",
"@babel/runtime": "7.0.0",
"@lightscript/babel-preset": "4.0.0-alpha.12",
"@lightscript/eslint-plugin": "4.0.0-alpha.12",
"autoprefixer": "9.1.5",
"babel-jest": "23.6.0",
"babel-loader": "8.0.2",
"babel-plugin-transform-react-remove-prop-types": "0.4.18",
"bfj": "6.1.1",
"case-sensitive-paths-webpack-plugin": "2.1.2",
"chalk": "2.4.1",
"css-loader": "1.0.0",
"dotenv": "6.0.0",
"dotenv-expand": "4.2.0",
"escape-string-regexp": "1.0.5",
"eslint": "5.6.0",
"eslint-loader": "2.1.1",
"eslint-plugin-flowtype": "2.50.1",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jsx-a11y": "6.1.1",
"eslint-plugin-react": "7.11.1",
"extract-text-webpack-plugin": "3.0.2",
"file-loader": "1.1.11",
"fs-extra": "7.0.0",
"graphql": "^0.13.0",
"graphql-tag": "2.9.2",
"html-webpack-plugin": "4.0.0-alpha.2",
"identity-obj-proxy": "3.0.0",
"jest": "23.6.0",
"loader-utils": "1.1.0",
"mini-css-extract-plugin": "0.4.3",
"object-assign": "4.1.1",
"optimize-css-assets-webpack-plugin": "5.0.1",
"postcss-flexbugs-fixes": "4.1.0",
"postcss-loader": "3.0.0",
"postcss-safe-parser": "4.0.1",
"promise": "8.0.2",
"raf": "3.4.0",
"react-dev-utils": "^5.0.2",
"resolve": "1.8.1",
"sass-loader": "7.1.0",
"style-loader": "0.23.0",
"sw-precache-webpack-plugin": "0.11.5",
"terser-webpack-plugin": "1.1.0",
"thread-loader": "1.2.0",
"url-loader": "1.1.1",
"webpack": "4.19.1",
"webpack-dev-server": "3.1.8",
"webpack-manifest-plugin": "2.0.4",
"whatwg-fetch": "3.0.0"
},
"scripts": {
"start": "node scripts/start.js",
"build": "node --max_old_space_size=4096 scripts/build.js",
"test": "node scripts/test.js --env=jsdom"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,mjs}"
],
"setupFiles": [
"<rootDir>/config/polyfills.js"
],
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.{js,jsx,mjs}",
"<rootDir>/src/**/?(*.)(spec|test).{js,jsx,mjs}"
],
"testEnvironment": "node",
"testURL": "http://localhost",
"transform": {
"^.+\\.(js|jsx|mjs)$": "<rootDir>/node_modules/babel-jest",
"^.+\\.css$": "<rootDir>/config/jest/cssTransform.js",
"^(?!.*\\.(js|jsx|mjs|css|json)$)": "<rootDir>/config/jest/fileTransform.js"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx|mjs)$"
],
"moduleNameMapper": {
"^react-native$": "react-native-web"
},
"moduleFileExtensions": [
"web.js",
"js",
"json",
"web.jsx",
"jsx",
"node",
"mjs"
]
}
}