-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.87 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
{
"name": "lti-1_3-tool-example",
"version": "0.0.1",
"description": "A simple tool to demonstrate LTI 1.3",
"main": "index.js",
"scripts": {
"dev-server": "yarn run webpack serve --content-base web/app/views --hot --inline",
"lint": "eslint src/**/*.js --fix",
"test": "mocha --compilers js:babel-core/register ./test/**/*.test.js --require ignore-styles",
"build": "webpack --config webpack.prod.config.js",
"build:watch": "webpack --config webpack.prod.config.js --watch",
"dev": "yarn build:watch & bundle exec rerun ruby web/app.rb",
"pretty-fix": "yarn prettier --write ./src/**/*.js"
},
"author": "Weston Dransfield",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.1",
"antd": "^4.7.3",
"axios": "^0.21.0",
"babel-loader": "^8.1.0",
"css-loader": "^5.0.0",
"node-sass": "^4.14.1",
"prettier": "^2.1.2",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"regenerator-runtime": "^0.13.7",
"sass-loader": "^10.0.4",
"style-loader": "^2.0.0",
"webpack": "^5.3.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"enzyme": "^3.11.0",
"eslint": "^7.12.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-watch": "^7.0.0",
"expect": "^26.6.1",
"ignore-styles": "^5.0.1",
"mocha": "^8.2.0",
"react-addons-test-utils": "^15.6.2",
"react-test-renderer": "^17.0.1",
"webpack-cli": "^4.1.0",
"webpack-dev-middleware": "^3.7.2",
"webpack-dev-server": "^3.11.0",
"webpack-hot-middleware": "^2.25.0"
}
}