-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.95 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.95 KB
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
64
{
"name": "react-nonogram",
"version": "0.0.0",
"description": "Puzzle nonogram game made with React",
"main": "index.js",
"scripts": {
"build": "webpack --config webpack/production.config.js",
"clean": "rm -rf build",
"deploy-gh-pages": "sh scripts/deploy-gh-pages.sh",
"lint": "tslint -c tslint.json 'src/**/*.{ts,tsx}'",
"lint:fix": "npm run lint -- --fix",
"start": "npm run build && node src/server",
"start:dev": "webpack-dev-server --config webpack/development.config.js",
"analyze": "webpack --config webpack/analyzer.config.js"
},
"author": "Richard Hidalgo",
"contributors": [
"Richard Hidalgo"
],
"license": "BSD-2-Clause",
"dependencies": {
"lz-string": "^1.4.4",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-router-dom": "^4.3.1",
"react-transition-group": "^4.2.1",
"styled-components": "^4.3.2",
"webfontloader": "^1.6.28"
},
"devDependencies": {
"@types/lz-string": "^1.3.33",
"@types/react": "^16.8.23",
"@types/react-dom": "^16.8.4",
"@types/react-router-dom": "^4.3.4",
"@types/react-transition-group": "^2.9.2",
"@types/styled-components": "^4.1.18",
"@types/webfontloader": "^1.6.29",
"copy-webpack-plugin": "^4.6.0",
"express": "^4.17.1",
"html-webpack-plugin": "^3.2.0",
"pre-commit": "^1.2.2",
"terser-webpack-plugin": "^1.3.0",
"ts-loader": "^5.4.5",
"tslint": "^5.18.0",
"tslint-react": "^3.6.0",
"typescript": "^3.5.3",
"typescript-plugin-styled-components": "^1.4.3",
"webpack": "^4.35.3",
"webpack-cli": "^3.3.6",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-dev-server": "^3.7.2",
"webpack-merge": "^4.2.1"
},
"keywords": [
"react",
"nonogram"
],
"engines": {
"node": ">=10.16.0"
},
"repository": "https://github.com/jokude/react-nonogram",
"homepage": "https://github.com/jokude/react-nonogram",
"bugs": "https://github.com/jokude/react-nonogram/issues"
}