-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.79 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": "homepage",
"version": "0.1.0",
"private": true,
"dependencies": {
"@types/react-modal": "^3.8.1",
"bootstrap": "4.3.1",
"chart.js": "^2.7.1",
"ionicons": "^4.5.5",
"react": "^16.2.0",
"react-app-polyfill": "^0.2.2",
"react-chartjs-2": "^2.6.4",
"react-dom": "^16.2.0",
"react-modal": "^3.8.1",
"react-scripts-ts": "3.1.0",
"react-waypoint": "^9.0.1"
},
"scripts": {
"start-js": "react-scripts-ts start",
"start": "npm-run-all -p watch-css start-js",
"build-js": "react-scripts-ts build",
"build": "npm-run-all build-css build-js",
"test": "react-scripts-ts test --env=jsdom",
"eject": "react-scripts-ts eject",
"build-css": "./node_modules/.bin/node-sass-chokidar src/styles/scss -o src/styles/css",
"watch-css": "npm run build-css && ./node_modules/.bin/node-sass-chokidar src/styles/scss -o src/styles/css --watch --recursive",
"eslint": "eslint './src/**/*.{ts,tsx}'",
"stylelint": "stylelint \"src/**/*.scss\""
},
"devDependencies": {
"@types/chart.js": "^2.7.3",
"@types/jest": "^24.0.11",
"@types/node": "^11.11.3",
"@types/react": "^16.8.23",
"@types/react-dom": "^16.0.3",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"node-sass-chokidar": "^1.3.4",
"npm-run-all": "^4.1.2",
"prettier": "^1.18.2",
"stylelint": "^10.1.0",
"stylelint-config-standard": "^18.3.0",
"stylelint-junit-formatter": "^0.2.1",
"tslint": "^5.8.0",
"tslint-config-prettier": "^1.6.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.3.3333"
}
}