-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.38 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.38 KB
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
{
"name": "engine-tutorial",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --mode development --hot",
"build": "webpack --mode production",
"test": "NODE_ENV=test jest",
"test:coverage": "NODE_ENV=test jest --coverage",
"test:watch": "NODE_ENV=test jest --watch",
"test:watch:update": "NODE_ENV=test jest --watch -u"
},
"author": "cristian.buta@code11.com",
"license": "ISC",
"dependencies": {
"@c11/engine.macro": "4.0.0-alpha.2",
"@c11/engine.react": "4.0.0-alpha.2",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"@babel/preset-typescript": "^7.10.4",
"@testing-library/react": "^11.0.4",
"@types/jest": "^24.0.25",
"babel-jest": "^24.9.0",
"babel-loader": "^8.1.0",
"babel-plugin-macros": "^2.8.0",
"html-webpack-plugin": "^4.3.0",
"jest": "^24.9.0",
"jest-screenshot": "^0.3.1",
"jest-transform-css": "^2.1.0",
"jest-transform-file": "^1.1.1",
"jsdom-screenshot": "^3.2.0",
"typescript": "^4.0.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}