forked from DynamoDS/NotificationCenter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 3.22 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
69
70
71
72
73
74
75
76
77
78
{
"name": "@dynamods/notifications-center",
"version": "0.0.30",
"description": "Notification center maintained by Dynamo Team@Autodesk",
"author": "Autodesk Inc.",
"license": "MIT",
"homepage": "https://github.com/DynamoDS/NotificationCenter.git",
"repository": {
"type": "git",
"url": "git+https://github.com/DynamoDS/NotificationCenter.git"
},
"publishConfig": {
"access": "public"
},
"main": "index.js",
"scripts": {
"lint:check": "eslint src/ tests/",
"lint:fix": "eslint src/ tests/ --fix",
"test:unit": "jest tests/unit",
"test:e2e": "jest tests/e2e --coverage=false",
"test": "jest",
"start:dev": "webpack serve --config webpack.config.js --env dev",
"start:staging": "webpack serve --config webpack.config.js --env staging",
"start": "webpack serve --config webpack.config.js --env prod",
"build:dev": "webpack --config webpack.config.js --mode=development --env dev",
"build:staging": "webpack --config webpack.config.js --mode=development --env staging",
"build": "webpack --config webpack.config.js --mode=development --env prod",
"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 'NotificationCenter' --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 'NotificationCenter' --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"
},
"keywords": [],
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/preset-react": "^7.18.6",
"@dynamods/notifications-panel": "^0.0.10",
"@hig/timestamp": "^2.1.0",
"@hig/fonts": "^2.0.0",
"@hig/button": "^3.2.0",
"@hig/flyout": "^2.3.1",
"axios": "^1.6.5",
"babel-loader": "^8.2.5",
"compression-webpack-plugin": "^10.0.0",
"css-loader": "^6.7.1",
"dotenv-webpack": "^8.0.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^8.21.0",
"eslint-plugin-react": "^7.30.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^28.1.3",
"jest-junit": "^14.0.0",
"jest-puppeteer": "^10.1.0",
"jest-runner-eslint": "^1.1.0",
"puppeteer": "^22.11.2",
"sass": "^1.53.0",
"sass-loader": "^13.0.2",
"style-loader": "^3.3.1",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3",
"webpack-merge": "^5.8.0"
},
"bugs": {
"url": "https://github.com/DynamoDS/NotificationCenter/issues"
}
}