FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
frontend/ui/package.json at test · devhttps/frontend · GitHub
devhttps
/
frontend
Public
forked from
guardian/frontend
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
frontend
/
ui
/
package.json
Copy path
More file actions
More file actions
Latest commit
History
History
History
92 lines (92 loc) · 4.01 KB
Breadcrumbs
frontend
/
ui
/
package.json
Copy path
File metadata and controls
92 lines (92 loc) · 4.01 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
{
"name"
:
"
ui
"
,
"version"
:
"
0.1.0
"
,
"description"
:
"
Guardian rendering framework written in JSX.
"
,
"private"
:
true
,
"scripts"
: {
"lint:scss"
:
"
stylelint 'src/**/*.*css'
"
,
"lint:scss:fix"
:
"
stylelint 'src/**/*.*css' --fix
"
,
"lint:js"
:
"
eslint . --ext .js,.jsx
"
,
"lint:js:fix"
:
"
eslint . --ext .js,.jsx --fix
"
,
"lint"
:
"
yarn -s lint:js && yarn lint:scss
"
,
"lint:fix"
:
"
yarn -s lint:js:fix && yarn -s lint:scss:fix
"
,
"test"
:
"
jest
"
,
"test:watch"
:
"
yarn -s test -- --watch
"
,
"test:ci"
:
"
yarn -s test -- --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js
"
,
"clean:dist"
:
"
rm -rf ./dist
"
,
"compile"
:
"
BABEL_ENV=production yarn -s clean:dist && webpack --config ./__config__/webpack.config.prod.js --progress && echo 'Client bundle size:' && gzip-size ../static/target/javascripts/ui.bundle.browser.js
"
,
"watch"
:
"
yarn -s clean:dist && concurrently --kill-others -n
\"
BRSR,SRVR
\"
-c
\"
blue,green
\"
\"
yarn watch:server
\"
\"
nodemon --ignore dist --inspect __tools__/dev-server.js
\"
"
,
"watch:browser"
:
"
webpack-dev-server --config ./__config__/webpack.config.dev.js --env.browser --watch
"
,
"watch:server"
:
"
webpack --config ./__config__/webpack.config.dev.js --env.server --watch
"
,
"watch:nashorn"
:
"
yarn -s clean:dist && concurrently --kill-others -n
\"
BRSR,SRVR
\"
-c
\"
blue,green
\"
\"
yarn watch:nashorn:browser
\"
\"
yarn watch:nashorn:server
\"
"
,
"watch:nashorn:browser"
:
"
webpack-dev-server --config ./__config__/webpack.config.nashorn.dev.js --env.browser --watch
"
,
"watch:nashorn:server"
:
"
webpack --config ./__config__/webpack.config.nashorn.dev.js --env.server --watch
"
},
"dependencies"
: {
"@guardian/guui"
:
"
1.4.1
"
},
"devDependencies"
: {
"babel-core"
:
"
^6.25.0
"
,
"babel-loader"
:
"
^7.1.1
"
,
"babel-plugin-add-react-displayname"
:
"
^0.0.4
"
,
"babel-plugin-provide-modules"
:
"
^1.0.3
"
,
"babel-plugin-transform-es2015-modules-commonjs"
:
"
^6.24.1
"
,
"babel-plugin-transform-object-rest-spread"
:
"
^6.23.0
"
,
"babel-plugin-transform-react-jsx"
:
"
^6.24.1
"
,
"babel-plugin-transform-runtime"
:
"
^6.23.0
"
,
"babel-preset-env"
:
"
^1.6.0
"
,
"babel-preset-flow"
:
"
^6.23.0
"
,
"concurrently"
:
"
^3.5.0
"
,
"core-js"
:
"
^2.4.1
"
,
"coveralls"
:
"
^2.13.0
"
,
"css-loader"
:
"
^0.28.4
"
,
"decamelize"
:
"
^1.2.0
"
,
"eslint"
:
"
^4.10.0
"
,
"eslint-config-airbnb"
:
"
^16.1.0
"
,
"eslint-config-prettier"
:
"
^2.7.0
"
,
"eslint-plugin-flow-header"
:
"
^0.2.0
"
,
"eslint-plugin-flowtype"
:
"
^2.39.1
"
,
"eslint-plugin-import"
:
"
^2.8.0
"
,
"eslint-plugin-jsx-a11y"
:
"
^6.0.2
"
,
"eslint-plugin-prettier"
:
"
^2.3.1
"
,
"eslint-plugin-react"
:
"
^7.4.0
"
,
"express"
:
"
^4.15.4
"
,
"flow-bin"
:
"
^0.57.3
"
,
"gzip-size-cli"
:
"
^2.0.0
"
,
"htmltojsx"
:
"
^0.2.6
"
,
"jest"
:
"
^20.0.4
"
,
"nodemon"
:
"
^1.12.1
"
,
"postcss"
:
"
^6.0.13
"
,
"postcss-apply"
:
"
^0.8.0
"
,
"postcss-custom-media"
:
"
^6.0.0
"
,
"postcss-custom-properties"
:
"
^6.2.0
"
,
"prettier"
:
"
^1.7.4
"
,
"raw-loader"
:
"
^0.5.1
"
,
"request"
:
"
^2.83.0
"
,
"stylelint"
:
"
^8.0.0
"
,
"stylelint-config-standard"
:
"
^17.0.0
"
,
"stylelint-order"
:
"
^0.6.0
"
,
"to-string-loader"
:
"
^1.1.5
"
,
"webpack"
:
"
^3.8.1
"
,
"webpack-bundle-analyzer"
:
"
^2.8.3
"
,
"webpack-dev-middleware"
:
"
^1.12.0
"
,
"webpack-dev-server"
:
"
^2.6.1
"
,
"webpack-hot-middleware"
:
"
^2.19.1
"
,
"webpack-merge"
:
"
^4.1.0
"
},
"jest"
: {
"moduleDirectories"
: [
"
<rootDir>/src
"
,
"
<rootDir>/src/app
"
,
"
node_modules
"
],
"moduleNameMapper"
: {
"^(.*)
\\
.svg$"
:
"
<rootDir>/__mocks__/svg.js
"
,
"^(.*)
\\
.css$"
:
"
<rootDir>/__mocks__/css.js
"
},
"globals"
: {
"BROWSER"
:
false
,
"SERVER"
:
true
}
}
}
Back
|
FazBrowse Home
|
New Git URL