-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
68 lines (68 loc) · 2.47 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
{
"name": "@dynamods/splash-screen",
"version": "1.0.26",
"description": "Splash Screen maintained by Dynamo Team@Autodesk",
"author": "Autodesk Inc.",
"license": "MIT",
"homepage": "https://github.com/DynamoDS/SplashScreen.git",
"repository": {
"type": "git",
"url": "git+https://github.com/DynamoDS/SplashScreen.git"
},
"publishConfig": {
"access": "public"
},
"main": "index.bundle.js",
"dependencies": {
"bootstrap": "^5.2.1",
"react": "^18.2.0",
"react-bootstrap": "^2.5.0",
"react-dom": "^18.2.0",
"react-scripts": "5.0.1"
},
"scripts": {
"lint:check": "eslint src/ tests/",
"lint:fix": "eslint src/ tests/ --fix",
"start": "webpack serve --config webpack.config.js",
"build": "webpack --config webpack.config.js --mode=development",
"bundle": "webpack --config webpack.config.js --mode=production",
"copy": "cp package.json dist/ && cp README.md dist/ && cp -r license_output dist/",
"production": "npm run bundle && npm run copy",
"version:patch": "npm version patch --no-git-tag-version",
"postversion": "git add -A; git commit --message 'Update version'; echo '\n!! Please run npm generate_license\n'",
"lic_direct": "npx @adsk/adsk-npm-license-puller --path . --app-name 'splash-screen' --verbose --about-box ./license_output/about-box_direct.html --about-box-type desktop --year $(date \"+%Y\") --paos ./license_output/paos_direct.csv",
"lic_transitive": "npx @adsk/adsk-npm-license-puller --path . --app-name 'splash-screen' --verbose --about-box ./license_output/about-box_transitive.html --about-box-type desktop --transitive --year $(date \"+%Y\") --paos ./license_output/paos_transitive.csv",
"generate_license": "npm run lic_direct && npm run lic_transitive",
"test:unit": "NODE_ENV=test jest tests/App.test.js",
"test:e2e": "playwright test tests/e2e.test.js",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@playwright/test": "^1.27.1",
"@testing-library/react": "^13.4.0",
"html-webpack-plugin": "^4.5.2",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"bugs": {
"url": "https://github.com/DynamoDS/SplashScreen/issues"
}
}