-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.63 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.63 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
45
46
47
48
49
50
51
52
53
54
{
"name": "reactExamples",
"version": "0.0.0",
"private": true,
"scripts": {
"setup": "npm ci",
"build": "npm run build-dev",
"start": "cross-env NODE_ENV=development webpack serve --config node_modules/@labkey/build/webpack/watch.config.js",
"build-dev": "npm run clean && cross-env NODE_ENV=development webpack --config node_modules/@labkey/build/webpack/dev.config.js --color",
"build-prod": "npm run clean && cross-env NODE_ENV=production PROD_SOURCE_MAP=source-map webpack --config node_modules/@labkey/build/webpack/prod.config.js --color --progress --profile",
"clean": "rimraf resources/views/gen && rimraf resources/web/gen && rimraf resources/web/reactExamples/gen",
"test": "cross-env NODE_ENV=test jest"
},
"dependencies": {
"@labkey/components": "7.26.0"
},
"devDependencies": {
"@labkey/build": "9.1.0",
"@types/jest": "30.0.0",
"@types/react": "18.3.27",
"jest": "30.3.0",
"jest-cli": "30.3.0",
"jest-environment-jsdom": "30.3.0",
"jest-teamcity-reporter": "0.9.0",
"ts-jest": "29.4.6"
},
"jest": {
"globals": {
"LABKEY": {}
},
"moduleFileExtensions": [
"tsx",
"ts",
"js"
],
"preset": "ts-jest",
"setupFilesAfterEnv": [
"<rootDir>/test/jest.setup.ts"
],
"testEnvironment": "jsdom",
"testMatch": null,
"testRegex": "(\\.(test))\\.(ts|tsx)$",
"testResultsProcessor": "jest-teamcity-reporter",
"transform": {
"^.+\\.tsx?$": [
"ts-jest",
{
"isolatedModules": true,
"tsconfig": "node_modules/@labkey/build/webpack/tsconfig.json"
}
]
}
}
}