-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.03 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
{
"name": "tshirt-customization",
"version": "1.0.0",
"description": "Generate custom tshirt base on inputs",
"scripts": {
"start": "tsc && concurrently \"npm run webpack\" \"npm run lite\" ",
"lite": "lite-server",
"tsc": "tsc",
"tsc:w": "tsc -w",
"typings": "typings",
"webpack": "webpack --watch",
"prod": "webpack--optimize-minimize --optimize-dedupe",
"test": "mocha ./test/index.js"
},
"author": "Giuliano Kranevitter <[email protected]>",
"license": "ISC",
"dependencies": {
"body-parser": "^1.15.2",
"crypto": "0.0.3",
"express": "^4.14.0",
"jade": "^1.11.0",
"jquery": "^3.1.0"
},
"devDependencies": {
"babel-core": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.14.0",
"chai": "^3.5.0",
"concurrently": "^2.2.0",
"lite-server": "^2.2.2",
"mocha": "^3.0.2",
"sinon": "^1.17.5",
"ts-loader": "^0.8.2",
"typescript": "^1.8.10",
"typings": "^1.3.2",
"webpack": "^1.13.1"
}
}