-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.52 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
{
"name": "xchg",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"tsc": "tsc",
"tsc:w": "tsc -w",
"webpack": "webpack",
"webpack:w": "webpack -w",
"typings": "typings",
"lite": "lite-server",
"start": "webpack && concurrently \"npm run tsc:w\" \"npm run webpack:w\" \"npm run lite\"",
"postinstall": "typings install",
"pretest": "rm -fr jstests && tsc --outDir jstests --jsx react --target es5 --noImplicitAny --module commonjs typings/index.d.ts tests/**/*.ts?",
"test": "mocha --recursive test.bootstrap.js jstests",
"test:w": "karma start"
},
"author": "",
"license": "ISC",
"dependencies": {
"jquery": "^3.1.0",
"react": "^15.2.1",
"react-dom": "^15.2.1",
"remarkable": "^1.6.2"
},
"devDependencies": {
"chai": "^3.5.0",
"concurrently": "^2.2.0",
"enzyme": "^2.4.1",
"jsdom": "^9.4.1",
"inline-source-map": "^0.6.2",
"json-loader": "^0.5.4",
"karma": "^1.1.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^1.0.1",
"karma-cli": "^1.0.1",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.1.1",
"karma-phantomjs-launcher": "^1.0.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"lite-server": "^2.2.2",
"mocha": "^2.5.3",
"phantomjs-prebuilt": "^2.1.7",
"react-addons-test-utils": "^15.2.1",
"source-map-loader": "^0.1.5",
"ts-loader": "^0.8.2",
"tslint": "^3.13.0",
"typescript": "^1.8.10",
"webpack": "^1.13.1"
}
}