forked from openexp/jspsych-react
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 838 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 838 Bytes
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
{
"name": "jspsych-react",
"version": "0.3.0",
"description": "A React wrapper for jsPsych",
"main": "dist/jspsych-react.js",
"repository": "git@github.com:makebrainwaves/jspsych-react.git",
"license": "MIT",
"private": false,
"contributors": [
"Teon L Brooks",
"Dano Morrison",
"Marion Le Borgne",
"William Wnekowicz"
],
"scripts": {
"build": "npm run clean && npm run bundle",
"bundle": "webpack",
"clean": "rimraf dist build"
},
"dependencies": {
"jspsych": "git://github.com/makebrainwaves/jspsych.git#modular",
"react": "^0.14.3"
},
"devDependencies": {
"@babel/core": "^7.5.0",
"@babel/preset-env": "^7.5.0",
"babel-loader": "^8.0.6",
"@babel/preset-react": "^7.0.0",
"rimraf": "^2.6.3",
"webpack": "^4.35.2",
"webpack-cli": "^3.3.5"
}
}