-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.07 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.07 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
{
"name": "typestyle.github.io",
"version": "0.0.0",
"description": "Website for TypeStyle",
"main": "index.js",
"scripts": {
"start": "npm prune && npm install && (npm run unittest:live & npm run build:live)",
"test": "npm run unittest && npm run build",
"unittest": "mocha --require ts-node/register \"src/**/*_spec@(.ts|.tsx)\"",
"unittest:live": "npm run unittest -- --watch --watch-extensions tsx,ts",
"build": "webpack -p --config ./webpack.config.js",
"build:live": "webpack-dev-server --host 0.0.0.0 --hot --inline --no-info --content-base ./public --config ./webpack.config.js",
"u": "npm uninstall typestyle && npm uninstall csstips && npm uninstall csx && npm install typestyle@latest csstips@latest csx@latest --save-exact --save",
"publish": "npm test && ts-node ./scripts/publish.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/typestyle/typestyle.github.io.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/typestyle/typestyle.github.io/issues"
},
"homepage": "https://github.com/typestyle/typestyle.github.io#readme",
"dependencies": {
"@types/codemirror": "0.0.34",
"@types/escape-html": "0.0.19",
"@types/history": "^2.0.39",
"@types/marked": "0.0.28",
"@types/node": "^9.4.0",
"@types/react": "0.14.43",
"@types/react-dom": "0.14.18",
"@types/react-router": "2.0.38",
"babel-polyfill": "^6.9.1",
"byots": "^2.1.0-dev.20161101.22.10",
"codemirror": "^5.20.2",
"css-to-typestyle": "^0.0.9",
"csstips": "^0.2.2",
"csx": "^8.5.0",
"escape-html": "^1.0.3",
"fuzzaldrin": "^2.1.0",
"gh-pages": "^0.11.0",
"marked": "^0.3.12",
"mobx": "^2.5.1",
"mobx-react": "^3.5.6",
"mocha": "^3.1.2",
"raw-loader": "^0.5.1",
"react": "15.3.2",
"react-dom": "15.3.2",
"react-router": "3.0.0",
"source-map-support": "0.4.3",
"ts-loader": "^3.4.0",
"ts-node": "^3.3.0",
"typescript": "2.7.1",
"typestyle": "1.7.0",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.11.1"
}
}