-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
43 lines (43 loc) · 1.23 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
{
"name": "takeme",
"version": "0.12.0",
"description": "A simple js routing solution",
"main": "lib/index.js",
"typings": "lib/index",
"scripts": {
"demo": "node fuse production",
"demo:client": "node fuse client",
"demo:server": "node fuse server",
"build": "tsc -p .",
"unittest": "mocha ./lib/tests/**/*.js",
"test": "npm run build && npm run unittest",
"preversion": "npm run build",
"postversion": "git push --follow-tags && npm publish",
"start": "npm run build -- -w & npm run unittest -- --watch & npm run demo:live",
"publishdemo": "npm run demo && ts-node ./src/scripts/publishdemo.ts"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@types/express": "4.17.9",
"@types/mocha": "2.2.38",
"@types/node": "14.14.10",
"@types/react": "17.0.0",
"@types/react-dom": "17.0.0",
"core-js": "2.5.3",
"csstips": "0.2.2",
"express": "^4.16.2",
"fuse-box": "1.3.118",
"fuse-hmr": "0.2.0",
"gh-pages": "0.11.0",
"mobx": "^3.0.2",
"mobx-react": "^4.1.0",
"mocha": "3.1.2",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"ts-node": "3.3.0",
"typescript": "4.1.2",
"typestyle": "1.3.7",
"uglify-js": "^2.7.5"
}
}