-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
107 lines (107 loc) · 3.2 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": "pfe-lab",
"version": "0.0.1",
"description": "React/Redux JS application for the Zooniverse Lab",
"main": "./src/index.jsx",
"repository": {
"type": "git",
"url": "https://github.com/zooniverse/pfe-lab"
},
"keywords": [
"react",
"redux",
"webpack",
"ES6",
"ES2015",
"babel",
"mocha",
"chai",
"zooniverse"
],
"scripts": {
"start": "export HEAD_COMMIT=$(git rev-parse --short HEAD); export NODE_ENV=development; check-engines && check-dependencies && webpack-dashboard -p 3777 -- webpack-dev-server --config ./webpack.config.js",
"_build-production": "export NODE_ENV=production; npm run _build",
"_build-staging": "export NODE_ENV=staging; npm run _build",
"_build": "export HEAD_COMMIT=$(git rev-parse --short HEAD); check-engines && check-dependencies && rimraf dist; webpack --config ./webpack.production.config.js",
"eslint": "eslint .",
"test": "NODE_ENV=development BABEL_ENV=test mocha --exit"
},
"engines": {
"node": ">=18",
"npm": ">=8"
},
"author": "Zooniverse",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/zooniverse/pfe-lab"
},
"homepage": "https://github.com/zooniverse/pfe-lab",
"dependencies": {
"classnames": "~2.3.2",
"counterpart": "~0.18.6",
"data-uri-to-blob": "~0.0.4",
"dompurify": "~3.0.6",
"drag-reorderable": "~0.2.0",
"grommet": "~1.13.0",
"history": "~4.4.1",
"markdownz": "~9.1.7",
"panoptes-client": "~5.6.2",
"prop-types": "~15.8.1",
"react": "~16.14.0",
"react-dom": "~16.14.0",
"react-redux": "~5.1.1",
"react-router": "~3.2.1",
"react-select": "~1.0.0-rc.3",
"redux": "~3.6.0",
"redux-devtools-extension": "~1.0.0",
"redux-thunk": "~2.4.2",
"zoo-grommet": "~0.3.5",
"zooniverse-react-components": "~0.14.2"
},
"devDependencies": {
"@babel/cli": "~7.23.4",
"@babel/core": "~7.23.3",
"@babel/eslint-parser": "~7.23.3",
"@babel/node": "~7.22.19",
"@babel/preset-env": "~7.23.3",
"@babel/preset-react": "~7.23.3",
"babel-loader": "~9.1.3",
"babel-plugin-react-transform": "~3.0.0",
"babel-plugin-rewire": "~1.2.0",
"chai": "~3.5.0",
"check-dependencies": "~2.0.0",
"check-engines": "~1.6.0",
"css-loader": "~6.8.1",
"enzyme": "~3.11.0",
"enzyme-adapter-react-16": "~1.15.7",
"eslint": "~8.54.0",
"eslint-config-airbnb": "~19.0.4",
"eslint-loader": "~4.0.2",
"eslint-plugin-import": "~2.29.0",
"eslint-plugin-jsx-a11y": "~6.8.0",
"eslint-plugin-react": "~7.33.2",
"html-webpack-plugin": "~5.5.3",
"jsdom": "~23.0.0",
"mini-css-extract-plugin": "~2.7.6",
"mocha": "~10.2.0",
"nib": "~1.2.0",
"nock": "~13.3.8",
"path-browserify": "~1.0.1",
"process": "~0.11.10",
"react-addons-test-utils": "~15.6.2",
"redux-mock-store": "~1.5.3",
"rimraf": "~5.0.5",
"sass": "~1.69.5",
"sass-loader": "~13.3.2",
"sinon": "~17.0.1",
"style-loader": "~3.3.3",
"stylus": "~0.62.0",
"stylus-loader": "~7.1.3",
"url": "~0.11.3",
"util": "~0.12.5",
"webpack": "~5.89.0",
"webpack-cli": "~5.1.4",
"webpack-dashboard": "~3.3.8",
"webpack-dev-server": "~4.15.1"
}
}