-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.7 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
56
57
58
{
"name": "Life",
"version": "1.0.0",
"description": "",
"main": "webpack.config.js",
"scripts": {
"build": "./node_modules/.bin/webpack --env production",
"dev": "./node_modules/.bin/nodemon --watch webpack.config.js --exec \"./node_modules/.bin/webpack-dev-server --env development\"",
"test": "./node_modules/.bin/karma start karma.conf.js --browsers PhantomJS"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.1.0",
"@types/jquery": "^3.2.17",
"@types/karma": "^1.7.3",
"@types/mocha": "^2.2.46",
"@types/sinon": "^4.1.2",
"chai": "^4.1.2",
"karma": "^1.7.1",
"karma-babel-preprocessor": "^7.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sinon": "^1.0.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.5",
"mocha": "^4.0.1",
"nodemon": "^1.12.1",
"phantomjs-prebuilt": "^2.1.16",
"sinon": "^4.1.3",
"tslint": "^5.8.0",
"tslint-config-airbnb-base": "^0.1.0",
"tslint-loader": "^3.5.3",
"webpack-dev-server": "^2.9.4"
},
"dependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"css-loader": "^0.28.7",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.6",
"html-webpack-plugin": "^2.30.1",
"pug": "^2.0.0-rc.4",
"pug-loader": "^2.3.0",
"style-loader": "^0.19.0",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"ts-loader": "^3.2.0",
"typescript": "^2.6.2",
"webpack": "^3.8.1"
}
}