-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.44 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
{
"name": "onitama",
"version": "1.0.0",
"description": "",
"author": "",
"license": "ISC",
"main": "src/index.ts",
"scripts": {
"start": "yarn && parcel src/index.html --no-cache",
"deploy": "npm run build && firebase deploy",
"build": "yarn && parcel build ./src/index.html --no-cache --no-minify --public-url=./"
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"semi": false,
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": true,
"jsxBracketSameLine": true
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"moduleDirectories": [
"node_modules",
"src"
]
},
"dependencies": {
"@firebase/app-types": "^0.3.2",
"@types/node": "^10.5.1",
"@types/notifyjs": "^3.0.0",
"@types/react": "^16.4.6",
"@types/react-dom": "^16.0.6",
"@types/react-helmet": "^5.0.6",
"components": "^0.1.0",
"firebase": "^5.2.0",
"firebase-tools": "^3.19.1",
"helpers": "^0.0.6",
"idle-js": "^0.1.3",
"notifyjs": "^3.0.0",
"parcel-bundler": "^1.9.4",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-helmet": "^5.2.0",
"typescript": "^2.9.2"
},
"devDependencies": {
"node-sass": "^4.9.0"
}
}