forked from shyras/osweb
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
122 lines (122 loc) · 3.08 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "osweb",
"version": "2.1.2",
"main": "src/js/osweb/index.js",
"description": "Online runtime for OpenSesame experiments",
"license": "GPL-3.0",
"keywords": [
"util",
"functional",
"server",
"client",
"browser"
],
"author": "Jaap Bos",
"url": "https://github.com/open-cogsci/osweb/issues",
"repository": {
"type": "git",
"url": "https://github.com/open-cogsci/osweb.git"
},
"contributors": [
{
"name": "Daniel Schreij",
"url": "https://dschreij.github.io"
},
{
"name": "Sebastiaan Mathot",
"url": "http://cogsci.nl/smathot"
}
],
"scripts": {
"clean": "rimraf public_html/*",
"start": "webpack-dev-server --port 3000 --mode development --progress",
"dev": "webpack --mode development --progress",
"prod": "webpack --mode production --progress",
"deploy": "npm run prod && surge -p public_html -d osweb.cogsci.nl",
"test": "jest",
"inittest": "jest --updateSnapshot"
},
"dependencies": {
"@babel/runtime": "^7.9.6",
"axios": "^0.19.2",
"color-convert": "^2.0.1",
"combos": "^0.2.0",
"core-js": "^3.1.4",
"csv-parse": "^4.16.0",
"filbert": "^0.1.20",
"jsdoc-to-markdown": "^7.0.1",
"lodash": "^4.17.15",
"pixi.js": "^5.2.4",
"pythonic": "^2.0.3",
"random-ext": "^2.7.1",
"random-seed": "^0.3.0",
"webfontloader": "^1.6.28"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@popperjs/core": "^2.4.0",
"acorn": "^7.1.1",
"alertifyjs": "^1.13.1",
"autoprefixer": "^9.7.6",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.5.1",
"babel-loader": "^8.1.0",
"babel-plugin-lodash": "^3.3.4",
"bootstrap": "^4.4.1",
"canvas": "^2.6.1",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.5.3",
"data-urls": "^2.0.0",
"del": "^5.1.0",
"eslint": "^6.8.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-html": "^6.0.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"file-api": "^0.10.4",
"file-loader": "^6.0.0",
"html-loader": "^1.1.0",
"html-webpack-plugin": "^4.3.0",
"husky": "^4.2.5",
"jest": "^25.5.4",
"jest-canvas-mock": "^2.2.0",
"jest-cli": "^25.5.4",
"jest-environment-jsdom-sixteen": "^1.0.3",
"jest-image-snapshot": "^3.1.0",
"jest-mock-console": "^1.0.0",
"jquery": "^3.5.1",
"lodash-webpack-plugin": "^0.11.5",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.14.1",
"path": "^0.12.7",
"pixi.js-legacy": "^5.2.4",
"popper.js": "^1.16.1",
"postcss-loader": "^3.0.0",
"precss": "^4.0.0",
"rimraf": "^3.0.2",
"sass-loader": "^8.0.2",
"style-loader": "^1.2.1",
"url-loader": "^4.1.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"jest": {
"setupFiles": [
"./src/js/tests/setupEnv.js"
],
"testEnvironment": "jest-environment-jsdom-sixteen"
},
"husky": {
"hooks": {
"pre-push": "npm test"
}
},
"browserslist": "> 0.25%, not dead"
}