-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.31 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
{
"name": "potier-library",
"version": "0.0.1",
"repository": "https://github.com/Reeska/potier-library",
"license": "MIT",
"dependencies": {
"angular": "^1.5.3",
"angular-route": "^1.5.5",
"angular-ui-bootstrap": "^1.3.2",
"babel-polyfill": "^6.7.4",
"bootstrap": "^3.3.6",
"jquery": "^2.2.3"
},
"devDependencies": {
"babel-core": "^6.7.6",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"concurrently": "^2.0.0",
"connect": "^3.4.1",
"css-loader": "^0.23.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"jasmine": "^2.4.1",
"jasmine-core": "^2.4.1",
"karma": "^0.13.22",
"karma-chrome-launcher": "^0.2.3",
"karma-jasmine": "^0.3.8",
"karma-phantomjs-launcher": "^1.0.0",
"karma-webpack": "^1.7.0",
"node-sass": "^3.5.3",
"phantomjs-prebuilt": "^2.1.7",
"sass-loader": "^3.2.0",
"serve-static": "^1.10.2",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.14.1"
},
"scripts": {
"start": "node node_modules/concurrently/src/main.js \"npm run watch\" \"npm run serve\"",
"watch": "node node_modules/webpack/bin/webpack.js --watch -d",
"serve": "node server.js",
"test": "karma start karma.config.js"
}
}