-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 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
54
55
{
"name": "storyteller",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rimraf ./dist",
"prebuild": "npm run clean",
"build": "webpack",
"prebuild:watch": "npm run clean",
"build:watch": "webpack-dev-server --open",
"start": "http-server ./ -p 8080",
"test": "karma start"
},
"author": "Tamas Szabo",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.0.1",
"@types/chai-spies": "^0.0.0",
"@types/enzyme": "^2.8.1",
"@types/mocha": "^2.2.41",
"@types/uuid": "^3.0.0",
"awesome-typescript-loader": "^3.1.3",
"chai": "^4.0.2",
"chai-spies": "git://github.com/chaijs/chai-spies.git#b11aeebf",
"css-loader": "^0.28.4",
"extract-text-webpack-plugin": "^2.1.2",
"html-webpack-plugin": "^2.28.0",
"http-server": "^0.10.0",
"karma": "^1.7.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.3",
"karma-webpack": "^2.0.3",
"mocha": "^3.4.2",
"node-sass": "^4.5.3",
"progress-bar-webpack-plugin": "^1.9.3",
"react-addons-test-utils": "^15.6.0",
"rimraf": "^2.6.1",
"sass-loader": "^6.0.6",
"style-loader": "^0.13.2",
"typescript": "^2.3.4",
"uuid": "^3.1.0",
"webpack": "^3.0.0",
"webpack-dev-server": "^2.5.0"
},
"dependencies": {
"@types/react": "^15.0.31",
"@types/react-dom": "^15.5.1",
"enzyme": "^2.9.1",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-test-renderer": "^15.6.1"
}
}