-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.29 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.29 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
{
"name": "experiment",
"version": "0.0.0",
"private": true,
"scripts": {
"setup": "npm ci --legacy-peer-deps",
"build": "npm run build-dev",
"start": "cross-env NODE_ENV=development webpack serve --config node_modules/@labkey/build/webpack/watch.config.js",
"start-link": "cross-env LINK=true npm run start",
"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/web/experiment/gen && rimraf resources/views/gen && rimraf resources/web/gen",
"test-integration": "cross-env NODE_ENV=test jest --ci --runInBand -c test/js/jest.config.integration.js"
},
"dependencies": {
"@labkey/components": "7.26.5-fb-mvtcBatch3.1"
},
"devDependencies": {
"@labkey/build": "9.1.0",
"@labkey/test": "1.13.0",
"@types/jest": "30.0.0",
"@types/react": "18.3.27",
"@types/react-dom": "18.3.7",
"jest": "30.3.0",
"jest-cli": "30.3.0",
"jest-environment-jsdom": "30.3.0",
"jest-teamcity-reporter": "0.9.0",
"mock-fs": "5.5.0",
"ts-jest": "29.4.6"
}
}