-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.38 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
{
"name": "nuri",
"version": "0.0.1",
"description": "Simple framework for isomorphic web sites",
"main": "index.js",
"module": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "tsc && mocha --require babel-register --recursive test/",
"start": "tsc && webpack --context examples/ --config examples/webpack.config.js && babel-node examples/server.js",
"build": "tsc --outDir deploy && cp package.json deploy/",
"lint": "tslint 'src/**/*.ts'"
},
"keywords": [],
"author": "Taeho Kim",
"license": "MIT",
"devDependencies": {
"@types/lodash": "^4.14.91",
"@types/nanoid": "^2.1.0",
"@types/react": "^16.14.2",
"@types/react-dom": "^16.9.10",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.5.0",
"babel-register": "^6.26.0",
"express": "^4.16.3",
"isomorphic-fetch": "^2.2.1",
"mocha": "^5.2.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"sinon": "^1.17.4",
"tslint": "^5.8.0",
"typescript": "^4.1.3",
"webpack": "^1.13.1"
},
"dependencies": {
"lodash": "^4.17.19",
"nanoid": "^3.1.20",
"path-to-regexp": "^1.7.0",
"rxjs": "^6.3.3"
}
}