forked from sourcegraph/sourcegraph-public-snapshot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 2.08 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 2.08 KB
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
{
"private": true,
"name": "webapp",
"version": "1.10.1",
"description": "The Sourcegraph web app",
"license": "MIT",
"scripts": {
"test": "jest --testPathIgnorePatterns e2e --testPathIgnorePatterns regression",
"test-e2e": "mocha ./src/e2e/e2e.test.ts",
"test:regression": "mocha './src/regression/**/*.test.ts'",
"test:regression:auth": "mocha ./src/regression/auth.test.ts",
"test:regression:codeintel": "mocha ./src/regression/codeintel.test.ts",
"test:regression:config-settings": "mocha ./src/regression/config-settings.test.ts",
"test:regression:core": "mocha ./src/regression/core.test.ts",
"test:regression:extensions": "mocha ./src/regression/extensions.test.ts",
"test:regression:external-services": "mocha ./src/regression/external-services.test.ts",
"test:regression:init": "mocha ./src/regression/init.test.ts",
"test:regression:integrations": "mocha ./src/regression/integrations.test.ts",
"test:regression:onboarding": "mocha ./src/regression/onboarding.test.ts",
"test:regression:org": "mocha ./src/regression/org.test.ts",
"test:regression:search": "mocha ./src/regression/search.test.ts",
"test-e2e-sgdev": "env SOURCEGRAPH_BASE_URL=https://sourcegraph.sgdev.org OVERRIDE_AUTH_SECRET=${SGDEV_OVERRIDE_AUTH_SECRET} mocha ./e2e/e2e.test.ts",
"build": "cross-env NODE_OPTIONS=\"--max_old_space_size=4096\" gulp build",
"watch": "cross-env NODE_OPTIONS=\"--max_old_space_size=4096\" gulp watch",
"watch-webpack": "cross-env NODE_OPTIONS=\"--max_old_space_size=4096\" gulp watchWebpack",
"webpack": "cross-env NODE_OPTIONS=\"--max_old_space_size=4096\" gulp webpack",
"lint": "yarn run eslint && gulp unusedExports && yarn run stylelint",
"eslint": "eslint --cache 'src/**/*.ts?(x)'",
"stylelint": "stylelint 'src/**/*.scss'",
"bundlesize": "GITHUB_TOKEN= bundlesize",
"browserslist": "browserslist"
},
"bundlesize": [
{
"path": "../ui/assets/styles/app.bundle.css"
},
{
"path": "../ui/assets/scripts/app.bundle.js"
}
],
"jest": {
"testURL": "http://localhost:3080"
}
}