-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.22 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
{
"name": "website",
"version": "0.1.0",
"private": true,
"dependencies": {
"node-sass-chokidar": "1.3.0",
"react": "^16.4.0",
"react-countdown-now": "1.3.0",
"react-dom": "^16.4.0",
"react-scripts-ts": "2.16.0"
},
"scripts": {
"c": "git-cz",
"prettify": "prettier --write ./src/**/*.{ts,js,json}",
"build:css": "node-sass-chokidar src/ -o src/",
"watch:css": "npm run build:css && node-sass-chokidar src/ -o src/ --watch --recursive",
"start": "react-scripts-ts start",
"build": "react-scripts-ts build",
"test": "react-scripts-ts test --env=jsdom",
"eject": "react-scripts-ts eject"
},
"devDependencies": {
"@types/jest": "^23.0.0",
"@types/node": "^10.3.0",
"@types/react": "^16.3.16",
"@types/react-dom": "^16.0.5",
"cz-conventional-changelog": "2.1.0",
"prettier": "1.13.4",
"tslint": "5.10.0",
"typescript": "^2.9.1"
},
"prettier": {
"useTabs": true,
"printWidth": 120,
"tabWidth": 4,
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"semi": true
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}