-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·33 lines (33 loc) · 876 Bytes
/
package.json
File metadata and controls
executable file
·33 lines (33 loc) · 876 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": "frontend-patterns",
"version": "1.0.0",
"description": "",
"main": "index.html",
"scripts": {
"start": "parcel index.html --open",
"build": "parcel build index.html",
"lint": "prettier --write --config .prettierrc src/**/*.ts",
"test": "jest --coverage"
},
"dependencies": {
"@babel/runtime-corejs2": "^7.2.0",
"react": "16.7.0-alpha.2",
"react-dom": "16.7.0-alpha.2",
"typescript": "3.2.2"
},
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/plugin-transform-runtime": "7.2.0",
"@babel/preset-react": "7.0.0",
"@types/jest": "23.3.10",
"@types/react": "16.7.13",
"@types/react-dom": "16.0.11",
"babel-jest": "23.6.0",
"babel-preset-env": "^1.7.0",
"jest": "23.6.0",
"parcel-bundler": "^1.6.1",
"prettier": "1.15.3",
"ts-jest": "23.10.5"
},
"keywords": []
}