-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 993 Bytes
/
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
{
"name": "bids_curation_gui",
"version": "0.1.0",
"scripts": {
"build": "parcel build bids_curation_gui/static/index.js -d bids_curation_gui/static/dist",
"watch": "parcel watch bids_curation_gui/static/index.js -d bids_curation_gui/static/dist",
"test": "jest"
},
"devDependencies": {
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"enzyme-to-json": "^3.3.0",
"jest": "^26.0.1",
"parcel-bundler": "^1.12.4",
"react-test-renderer": "^16.5.2"
},
"dependencies": {
"bootstrap": "^4.1.3",
"promise": "^8.1.0",
"prop-types": "^15.6.2",
"react": "^16.2.0",
"react-data-table-component": "^6.9.3",
"react-dom": "^16.2.0",
"react-stepzilla": "^6.0.2",
"styled-components": "^5.1.1"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>setupTests.js",
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
}
}