generated from allen-cell-animated/github-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·107 lines (107 loc) · 4.31 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "cell-feature-explorer",
"version": "1.5.0",
"description": "",
"main": "src/index.tsx",
"repository": {
"type": "git",
"url": "ssh://[email protected]:7999/aics/cell-feature-explorer.git"
},
"scripts": {
"dev": "webpack serve --hot --public --config ./webpack/webpack.config.js --env env=development",
"build": "webpack --config ./webpack/webpack.config.js --env env=production",
"staging-db-build": "cross-env USE_DEV_DB=true webpack --config ./webpack/webpack.config.js --env env=production",
"build:internal": "cross-env USE_JSON_DATASET=true webpack --config ./webpack/webpack.config.js --env env=development",
"start": "webpack serve --config ./webpack/webpack.config.js --env env=development",
"start:internal": "cross-env USE_JSON_DATASET=true webpack-dev-server --config ./webpack/webpack.config.js --env env=development",
"start:dev-db": "cross-env USE_DEV_DB=true webpack serve --config ./webpack/webpack.config.js --env env=development",
"lint": "eslint src/**/*.{ts,tsx}",
"typeCheck": "tsc -p tsconfig.json --noEmit",
"test": "cross-env BABEL_ENV=commonjs TS_NODE_FILES=true TS_NODE_PROJECT=tsconfig.commonjs.json NODE_ENV=production mocha src/**/*.test.ts",
"update-viewer": "npm i @aics/web-3d-viewer@latest",
"all-checks": "npm run test && npm run typeCheck && npm run lint"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.17",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@types/chai": "^4.0.4",
"@types/classnames": "^2.2.6",
"@types/enzyme": "^3.1.3",
"@types/history": "^4.7.2",
"@types/jsdom": "^11.0.4",
"@types/lodash": "^4.14.176",
"@types/mini-css-extract-plugin": "^2.2.0",
"@types/mocha": "^2.2.44",
"@types/papaparse": "^5.3.15",
"@types/plotly.js": "^1.54.10",
"@types/postcss-flexbugs-fixes": "^5.0.3",
"@types/react": "^16.14.0",
"@types/react-dom": "^16.9.17",
"@types/react-plotly.js": "^2.2.1",
"@types/react-redux": "^5.0.21",
"@types/sinon": "^2.3.7",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"autoprefixer": "^10.3.2",
"babel-loader": "^8.2.3",
"chai": "^4.1.2",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"cross-env": "^7.0.3",
"css-loader": "^6.2.0",
"enzyme": "^3.11.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.19.0",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^6.3.2",
"html-webpack-plugin": "^5.3.2",
"jsdom": "^25.0.1",
"jsdom-global": "3.0.2",
"mini-css-extract-plugin": "^2.2.0",
"mocha": "^10.7.3",
"mock-css-modules": "^1.0.0",
"postcss": "^8.3.6",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-loader": "^6.1.1",
"postcss-preset-env": "^10.0.8",
"prettier": "^2.0.4",
"sinon": "^4.0.1",
"ts-import-plugin": "^1.6.7",
"ts-loader": "^9.2.5",
"ts-node": "^10.2.1",
"typescript": "^4.3.5",
"url-loader": "^4.1.1",
"webpack": "^5.51.1",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.7.3"
},
"dependencies": {
"@aics/browsing-context-messaging": "~1.1",
"@aics/web-3d-viewer": "^2.10.4",
"@ant-design/icons": "^4.2.2",
"antd": "^5.17.4",
"axios": "^1.7.7",
"classnames": "^2.2.5",
"core-js": "^2.5.5",
"firebase": "^7.24.0",
"history": "^4.7.2",
"lodash": "^4.17.20",
"papaparse": "^5.4.1",
"plotly.js": "^2.35.2",
"pram": "^2.0.0-alpha.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-plotly.js": "^2.3.0",
"react-redux": "^5.0.7",
"redux-logic": "^0.15.0",
"reselect": "^3.0.1",
"ts-enum-util": "^4.0.2"
}
}