-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 983 Bytes
/
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
{
"name": "confetti-cannon",
"version": "1.0.0",
"description": "",
"keywords": [],
"repository": {
"type": "git",
"url": "git://github.com/nekobird/confetti-cannon.git"
},
"license": "ISC",
"author": "Andrew Prasetya",
"main": "source/main.js",
"scripts": {
"build": "rm -r ./build; parcel build ./source/index.html --out-dir build --public-url ./",
"prettier": "prettier --write 'source/**/*.js'",
"start": "parcel ./source/index.html",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@nekobird/controls": "0.0.5",
"@nekobird/rocket": "0.0.135"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/plugin-transform-typescript": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-typescript": "^7.8.3",
"autoprefixer": "^9.7.4",
"cssnano": "^4.1.10",
"parcel-bundler": "^1.12.4",
"sass": "^1.25.0"
}
}