-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.24 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "delila",
"version": "0.1.0",
"description": "A chess user interface intended for study, database creation, browsing and querying.",
"main": "public/index.html",
"window": {
"toolbar": true
},
"build": {
"nwVersion": "0.23.1"
},
"jest": {
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "/__tests__/.*\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
},
"scripts": {
"watch": "concurrently --kill-others \"npm run watchjs\" \"npm run watchcss\"",
"watchjs": "webpack --watch",
"watchcss": "scss -I node_modules/bulma/ --watch sass/app.scss:public/delila.css",
"build": "NODE_ENV=production webpack",
"test": "standardts && jest",
"testnocache": "standardts && jest",
"dist": "build --tasks win-x86,win-x64,linux-x86,linux-x64,mac-x64 --mirror https://dl.nwjs.io/ .",
"start": "run --x64 --mirror https://dl.nwjs.io/ ."
},
"dependencies": {
"abyssa": "^8.0.6",
"babel-polyfill": "^6.26.0",
"babel-runtime": "^6.26.0",
"bulma": "^0.6.2",
"chessground": "^7.3.0",
"immupdate": "^1.1.7",
"jest-cli": "^19.0.2",
"kaiju": "^0.28.2",
"snabbdom": "^0.7.1",
"space-lift": "^0.6.5"
},
"devDependencies": {
"@types/jest": "^19.2.1",
"@types/node": "^7.0.55",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2016": "^6.24.1",
"concurrently": "^3.4.0",
"css-loader": "^0.27.2",
"extract-text-webpack-plugin": "^2.1.0",
"jest": "^21.2.1",
"node-sass": "^4.7.2",
"nwjs-builder-phoenix": "^1.14.6",
"sass-loader": "^6.0.6",
"source-map-loader": "^0.2.3",
"standardts": "^1.0.0",
"style-loader": "^0.19.0",
"ts-jest": "^21.2.3",
"ts-loader": "^3.1.1",
"typescript": "^2.6.1",
"webpack": "^3.11.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lakinwecker/delila.git"
},
"keywords": [
"chess",
"ui"
],
"author": "Lakin Wecker <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/lakinwecker/delila/issues"
},
"homepage": "https://github.com/lakinwecker/delila#readme"
}