-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.18 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
{
"name": "nonogram-generator",
"version": "0.1.0",
"private": true,
"homepage": "https://dsmiller95.github.io/nonogram-printer",
"dependencies": {
"@material-ui/core": "^4.9.5",
"gh-pages": "^2.0.1",
"md5": "^2.2.1",
"mobx": "^5.14.0",
"mobx-react": "^6.1.3",
"mobx-utils": "^5.5.4",
"nonogram-grid": "^1.0.13",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-scripts-ts": "3.1.0",
"rxjs": "^6.5.4",
"tslib": "^1.11.0"
},
"scripts": {
"build:css": "node-sass src/ -o src/ ",
"watch:css": "npm run build:css && node-sass src/ -o src/ -w -r",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"start:ts": "react-scripts-ts start",
"start": "npm-run-all -p watch:css start:ts",
"build": "react-scripts-ts build",
"test": "react-scripts-ts test --env=jsdom",
"eject": "react-scripts-ts eject"
},
"devDependencies": {
"@types/jest": "^23.3.10",
"@types/md5": "^2.1.33",
"@types/node": "^13.7.4",
"@types/node-sass": "^4.11.0",
"@types/react": "^16.9.5",
"@types/react-dom": "^16.9.1",
"node-sass": "^4.13.1",
"npm-run-all": "^4.1.5",
"typescript": "^3.8.2"
}
}