-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.7 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
{
"name": "morse",
"version": "0.0.2",
"description": "Learn Morse!",
"main": "index.js",
"scripts": {
"test": "$(npm bin)/jest",
"test:watch": "$(npm bin)/jest --watch",
"build:watch": "parcel src/index.html",
"release:build": "parcel build src/index.html",
"release:deploy": "$(npm bin)/gh-pages -d dist/",
"release": "npm run release:build && npm run release:deploy",
"lint:prettier": "$(npm bin)/prettier --write \"**/*.*\""
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^25.1.4",
"@types/js-cookie": "^2.2.4",
"@types/js-levenshtein": "^1.1.0",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.4",
"@typescript-eslint/eslint-plugin": "^2.7.0",
"@typescript-eslint/parser": "^2.7.0",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"cssnano": "^4.1.10",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.6.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"gh-pages": "^2.1.1",
"husky": "^3.0.9",
"jest": "^25.1.0",
"lint-staged": "^9.4.3",
"parcel-plugin-clean-dist": "0.0.6",
"parcel-plugin-static-files-copy": "^2.3.1",
"prettier": "^1.19.1",
"sass": "^1.23.3",
"ts-jest": "^25.2.1",
"typescript": "^3.7.2"
},
"dependencies": {
"js-cookie": "^2.2.1",
"js-levenshtein": "^1.1.6",
"react": "^16.11.0",
"react-dom": "^16.11.0"
},
"staticFiles": {
"staticPath": "static",
"watcherGlob": "**/*"
}
}