-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.23 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 3.23 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
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
{
"name": "@zooniverse/fe-project",
"description": "Zooniverse front end app handling projects and classification",
"license": "Apache-2.0",
"author": "Zooniverse <contact@zooniverse.org> (https://www.zooniverse.org/)",
"version": "0.0.1",
"main": "index.js",
"scripts": {
"build": "APP_ENV=${APP_ENV:-development} NODE_ENV=${NODE_ENV:-production} PANOPTES_ENV=${PANOPTES_ENV:-production} next build",
"dev": "APP_ENV=${APP_ENV:-development} PANOPTES_ENV=${PANOPTES_ENV:-staging} node server/server.js",
"dev:inspect": "APP_ENV=${APP_ENV:-development} PANOPTES_ENV=${PANOPTES_ENV:-staging} NODE_OPTIONS='--inspect' node server/server.js",
"lint": "next lint",
"start": "NODE_ENV=${NODE_ENV:-production} PANOPTES_ENV=${PANOPTES_ENV:-production} node server/server.js",
"test": "BABEL_ENV=test mocha --config test/.mocharc.json ./.storybook/specConfig.js \"./{src,pages,stores}/**/*.spec.js\"",
"test:ci": "BABEL_ENV=test mocha --config test/.mocharc.json ./.storybook/specConfig.js --reporter=min \"./{src,pages,stores}/**/*.spec.js\"",
"storybook": "storybook dev -p 9001",
"build-storybook": "storybook build"
},
"dependencies": {
"@sentry/nextjs": "~8.43.0",
"@sindresorhus/string-hash": "~1.2.0",
"@zooniverse/async-states": "~0.0.1",
"@zooniverse/classifier": "^0.0.1",
"@zooniverse/grommet-theme": "~3.2.0",
"@zooniverse/panoptes-js": "~0.5.0",
"@zooniverse/react-components": "~1.13.0",
"cookie": "~1.0.2",
"d3": "~6.7.0",
"engine.io-client": "~6.6.0",
"express": "^4.17.1",
"graphql": "~16.9.0",
"graphql-request": "~6.1.0",
"grommet": "~2.41.0",
"grommet-icons": "~4.12.0",
"i18next": "~24.0.2",
"lodash": "~4.17.11",
"million": "~3.1.11",
"mobx": "~6.13.5",
"mobx-react": "~9.1.0",
"mobx-state-tree": "~5.4.0",
"morgan": "^1.10.0",
"newrelic": "~12.8.1",
"next": "~14.2.7",
"next-i18next": "~15.4.0",
"panoptes-client": "~5.6.0",
"path-match": "~1.2.4",
"polished": "~4.3.1",
"react": "~18.2.0",
"react-dom": "~18.2.0",
"react-i18next": "~14.1.3",
"react-resize-detector": "~9.1.0",
"styled-components": "~6.1.13",
"swr": "~2.2.0",
"validator": "~13.12.0"
},
"devDependencies": {
"@babel/register": "~7.25.9",
"@storybook/addon-a11y": "~7.6.11",
"@storybook/addon-essentials": "~7.6.11",
"@storybook/nextjs": "~7.6.11",
"@storybook/react": "~7.6.11",
"@testing-library/dom": "~9.3.0",
"@testing-library/react": "~14.2.0",
"@testing-library/user-event": "~14.5.0",
"@wojtekmaj/enzyme-adapter-react-17": "~0.8.0",
"babel-loader": "~9.2.1",
"babel-plugin-webpack-alias": "~2.1.2",
"chai": "~4.5.0",
"chai-dom": "~1.12.0",
"dirty-chai": "~2.0.1",
"enzyme": "~3.11.0",
"eslint-config-next": "~14.2.7",
"eslint-plugin-jsx-a11y": "~6.10.1",
"jsdom": "~25.0.1",
"mocha": "~10.8.2",
"msw": "~2.5.1",
"msw-storybook-addon": "~2.0.3",
"nock": "~13.5.1",
"selfsigned": "~2.4.1",
"sinon": "~19.0.2",
"sinon-chai": "~3.7.0",
"storybook": "~7.6.11",
"storybook-react-i18next": "~2.0.1"
},
"engines": {
"node": ">=20.5"
},
"msw": {
"workerDirectory": [
"storybook-public"
]
}
}